:root {
  --accent: #FF9454;
  --accent-press: #F07F3C;
  --accent-ink: #3A2A12;
}

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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Nunito', system-ui, sans-serif;
  background: #FFFBF4;
  color: #3A4530;
  font-size: 18px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

button {
  font: inherit;
}

img {
  max-width: 100%;
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
  border-radius: 6px;
}

::selection {
  background: #FFF0A4;
}

/* ── Header ── */
header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 251, 244, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #ECE3D2;
}

.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 13px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
}

nav {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-link {
  padding: 8px 0;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  color: #49563B;
  border-bottom: 2px solid transparent;
  transition: color .15s, border-color .15s;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  display: inline-block;
}

.nav-link:hover {
  color: var(--accent);
}

.nav-link.active {
  color: #C25B22;
  border-bottom-color: var(--accent);
}

.btn-primary {
  background: var(--accent);
  color: var(--accent-ink);
  font-weight: 800;
  font-size: 15px;
  padding: 11px 20px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(255, 148, 84, .32);
  transition: background .15s, transform .15s;
  display: inline-block;
}

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

/* ── Mobile menu ── */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: #3A4530;
}

@media (max-width: 700px) {
  nav {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    width: 100%;
  }

  nav.open {
    display: flex;
  }

  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .header-inner {
    flex-wrap: wrap;
  }

  .hero-mark {
    display: none;
  }

  .hero-yellow,
  .hero-green,
  .hero-orange {
    padding: 48px 24px;
  }
}

/* ── Sections ── */
.section-hero {
  background: #49563B;
  color: #FFF3E6;
  position: relative;
  overflow: hidden;
}

.section-hero .blob1 {
  position: absolute;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: rgba(255, 148, 84, .16);
  top: -160px;
  right: -120px;
  filter: blur(8px);
}

.section-hero .blob2 {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(255, 240, 164, .12);
  bottom: -150px;
  left: -100px;
}

.hero-content {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  padding: 70px 24px 84px;
  text-align: center;
}

.hero-content h1 {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-size: clamp(30px, 4.6vw, 52px);
  line-height: 1.12;
  margin: 0 auto 20px;
  max-width: 18ch;
  color: #FFF3E6;
}

.hero-content p {
  font-size: 20px;
  line-height: 1.6;
  color: #E9E0CF;
  max-width: 60ch;
  margin: 0 auto 34px;
}

.btn-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-lg {
  font-weight: 800;
  font-size: 17px;
  padding: 15px 28px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: background .15s, transform .15s;
  display: inline-block;
}

.btn-accent {
  background: var(--accent);
  color: var(--accent-ink);
  box-shadow: 0 8px 22px rgba(255, 148, 84, .4);
}

.btn-accent:hover {
  background: var(--accent-press);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: #FFF3E6;
  border: 2px solid rgba(255, 243, 230, .55);
}

.btn-outline:hover {
  background: rgba(255, 243, 230, .12);
}

.btn-dark {
  background: #49563B;
  color: #FFF3E6;
}

.btn-dark:hover {
  background: #3A4530;
}

/* ── Cards grid ── */
.container {
  max-width: 1180px;
  margin: 0 auto;
}

.section-pad {
  padding: 84px 24px 30px;
}

.section-label {
  display: inline-block;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

h2.serif {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.14;
  color: #3A4530;
  margin: 0 0 16px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.card {
  background: #fff;
  border: 1px solid #EDE6D6;
  border-radius: 22px;
  padding: 32px;
  box-shadow: 0 10px 30px rgba(73, 86, 59, .06);
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.card h3 {
  font-size: 21px;
  font-weight: 800;
  margin: 0 0 8px;
  color: #3A4530;
}

.card p {
  margin: 0;
  color: #5A6650;
  font-size: 17px;
}

/* ── Yellow box ── */
.yellow-box {
  background: #FFF0A4;
  border-radius: 28px;
  padding: clamp(30px, 5vw, 56px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  align-items: start;
}

.yellow-box h2 {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-size: clamp(26px, 3.4vw, 40px);
  color: #49563B;
  margin: 0;
}

.step-num {
  font-family: 'DM Serif Display', serif;
  font-size: 40px;
  color: var(--accent);
  line-height: 1;
}

.step-title {
  font-size: 20px;
  font-weight: 800;
  margin: 8px 0 6px;
  color: #49563B;
}

.step-desc {
  margin: 0;
  color: #5E5A3E;
  font-size: 17px;
}

/* ── Próximo encontro ── */
.next-box {
  background: #49563B;
  color: #FFF3E6;
  border-radius: 28px;
  padding: clamp(30px, 5vw, 52px);
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
  align-items: center;
}

@media (max-width: 700px) {
  .next-box {
    grid-template-columns: 1fr;
  }
}

.next-label {
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #C9C2AE;
}

.next-val {
  font-size: 20px;
  font-weight: 800;
  color: #FFF3E6;
}

.next-img-ph {
  background: linear-gradient(135deg, #FFE7D3, #FFF0A4);
  border-radius: 20px;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #9A7B4F;
  font-weight: 700;
  text-align: center;
  padding: 20px;
}

/* ── Blog cards ── */
.blog-card {
  display: block;
  background: #fff;
  border: 1px solid #EDE6D6;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(73, 86, 59, .06);
  cursor: pointer;
  transition: transform .2s;
}

.blog-card:hover {
  transform: translateY(-3px);
}

.blog-thumb {
  height: 160px;
}

.blog-body {
  padding: 24px;
}

.blog-tag {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent);
}

.blog-card h3 {
  font-size: 20px;
  font-weight: 800;
  margin: 8px 0 6px;
  color: #3A4530;
}

.blog-card p {
  margin: 0;
  color: #5A6650;
  font-size: 16px;
}

/* ── Blog article ── */
.blog-article {
  max-width: 720px;
  margin: 0 auto;
  padding: 64px 24px 40px;
}

.blog-article p {
  font-size: 18px;
  color: #3A4530;
  margin: 0 0 22px;
}

.blog-article h2 {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-size: 26px;
  color: #3A4530;
  margin: 36px 0 14px;
}

.blog-meta {
  font-size: 14px;
  color: #9A8A6E;
  font-weight: 700;
  margin-bottom: 26px;
}

.blog-back {
  display: inline-block;
  margin: 10px 0 40px;
  color: var(--accent);
  font-weight: 800;
  cursor: pointer;
}

/* ── CTA section ── */
.cta-section {
  background: #FFE7D3;
  padding: 70px 24px;
  text-align: center;
}

.cta-section h2 {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-size: clamp(28px, 4vw, 44px);
  color: #49563B;
  margin: 0 0 16px;
}

/* ── Page hero variations ── */
.hero-yellow {
  background: #FFF0A4;
  padding: 64px 24px;
  position: relative;
  overflow: hidden;
}

.hero-green {
  background: #49563B;
  color: #FFF3E6;
  padding: 64px 24px;
  position: relative;
  overflow: hidden;
}

.hero-orange {
  background: #FFE7D3;
  padding: 64px 24px;
  position: relative;
  overflow: hidden;
}

.hero-mark {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  height: 82%;
  max-height: 240px;
  opacity: .92;
  pointer-events: none;
}

.hero-inner {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-inner h1 {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-size: clamp(32px, 4.6vw, 52px);
  line-height: 1.12;
  margin: 0 0 18px;
}

/* ── Quem somos ── */
.mission-grid {
  max-width: 980px;
  margin: 0 auto;
  padding: 72px 24px 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

@media (max-width: 700px) {
  .mission-grid {
    grid-template-columns: 1fr;
  }
}

.mission-grid h2 {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-size: 30px;
  color: #3A4530;
  margin: 0 0 14px;
}

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

.value-card {
  background: #fff;
  border: 1px solid #EDE6D6;
  border-radius: 20px;
  padding: 26px;
}

.value-card h3 {
  margin: 0 0 8px;
  font-size: 19px;
  font-weight: 800;
  color: #3A4530;
}

.value-card p {
  margin: 0;
  color: #5A6650;
  font-size: 16px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.team-card {
  text-align: center;
}

.team-photo {
  aspect-ratio: 1;
  border-radius: 20px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #B08A5C;
  font-weight: 700;
  overflow: hidden;
}

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

.team-card h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  color: #3A4530;
}

.team-card p {
  margin: 2px 0 0;
  color: #7A6A50;
  font-size: 15px;
}

/* ── Timeline ── */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.tl-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  padding-bottom: 36px;
  border-left: 3px solid #FFE0BE;
  margin-left: 60px;
  padding-left: 34px;
  position: relative;
}

.tl-item:last-child {
  border-left-color: transparent;
}

.tl-dot {
  position: absolute;
  left: -11px;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent);
  border: 4px solid #FFFBF4;
}

.tl-item:last-child .tl-dot {
  background: #49563B;
}

.tl-year {
  font-family: 'DM Serif Display', serif;
  font-size: 30px;
  color: var(--accent);
  margin-left: -60px;
  width: 120px;
  text-align: right;
}

.tl-item:last-child .tl-year {
  color: #49563B;
}

.tl-body h3 {
  margin: 0 0 6px;
  font-size: 21px;
  font-weight: 800;
  color: #3A4530;
}

.tl-body p {
  margin: 0;
  color: #5A6650;
  font-size: 17px;
}

/* ── Encontros page ── */
.info-box {
  background: #FFE7D3;
  border-radius: 24px;
  padding: clamp(26px, 4vw, 44px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}

@media (max-width: 700px) {
  .info-box {
    grid-template-columns: 1fr;
  }
}

.info-box h2 {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-size: 28px;
  color: #49563B;
  margin: 0 0 16px;
}

.info-box ul {
  margin: 0;
  padding-left: 20px;
  color: #6E5E44;
  font-size: 17px;
  line-height: 1.9;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.gallery-ph {
  aspect-ratio: 4/3;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #B08A5C;
  font-weight: 700;
  overflow: hidden;
}

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

/* ── Apoie ── */
.dark-cta {
  background: #49563B;
  color: #FFF3E6;
  border-radius: 28px;
  padding: clamp(30px, 5vw, 52px);
  text-align: center;
}

.dark-cta h2 {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-size: clamp(26px, 3.4vw, 38px);
  margin: 0 0 14px;
}

/* ── Forms ── */
.form-wrap {
  background: #fff;
  border: 1px solid #EDE6D6;
  border-radius: 24px;
  padding: clamp(24px, 4vw, 40px);
  box-shadow: 0 10px 30px rgba(73, 86, 59, .06);
}

.form-wrap h2 {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-size: 28px;
  color: #3A4530;
  margin: 0 0 22px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

@media (max-width: 600px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

.field {
  display: block;
}

.field span {
  display: block;
  font-weight: 700;
  color: #49563B;
  margin-bottom: 6px;
  font-size: 15px;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 13px 15px;
  border: 1.5px solid #E2D8C5;
  border-radius: 12px;
  font: inherit;
  font-size: 16px;
  background: #FFFDF8;
  transition: border-color .15s;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--accent);
  outline: none;
}

.field.full {
  grid-column: 1 / -1;
}

.form-note {
  margin: 16px 0 0;
  font-size: 14px;
  color: #9A8A6E;
}

.success-box {
  background: #FFF0A4;
  border-radius: 24px;
  padding: 48px;
  text-align: center;
}

.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.success-box h2 {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-size: 30px;
  color: #49563B;
  margin: 0 0 10px;
}

.steps-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 18px;
  margin-bottom: 48px;
}

.step-card {
  border-radius: 18px;
  padding: 22px;
}

/* ── Contato ── */
.contact-grid {
  max-width: 980px;
  margin: 0 auto;
  padding: 64px 24px 90px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: start;
}

@media (max-width: 700px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-item {
  background: #fff;
  border: 1px solid #EDE6D6;
  border-radius: 16px;
  padding: 18px 20px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: border-color .15s;
}

.contact-item:hover {
  border-color: var(--accent);
}

.contact-item .ci-label {
  font-weight: 800;
  color: #3A4530;
}

.contact-item .ci-val {
  color: var(--accent);
  font-weight: 700;
  font-size: 15px;
}

.contact-info-row {
  font-weight: 800;
  color: #3A4530;
  margin-bottom: 2px;
}

.contact-info-sub {
  color: #7A6A50;
}

/* ── Footer ── */
footer {
  background: #3A4530;
  color: #D8D2C0;
  padding: 56px 24px 36px;
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 36px;
  align-items: start;
}

@media (max-width: 700px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }
}

.footer-inner p {
  margin: 0;
  max-width: 34ch;
  color: #BDB7A4;
  font-size: 16px;
}

.footer-heading {
  font-weight: 800;
  color: #FFF3E6;
  margin-bottom: 12px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  color: #D8D2C0;
  cursor: pointer;
  transition: color .15s;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-bottom {
  max-width: 1180px;
  margin: 36px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: #9A937F;
  font-size: 14px;
}

/* ── Language switcher ── */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 8px;
  border-left: 1px solid #D5CCBC;
  padding-left: 16px;
}
.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  color: #49563B;
  padding: 4px 5px;
  opacity: .45;
  letter-spacing: .04em;
  transition: opacity .15s;
}
.lang-btn:hover { opacity: .8; }
.lang-btn.active { opacity: 1; color: #C25B22; }
@media (max-width: 700px) {
  .lang-switcher { border-left: none; padding-left: 0; margin-left: 0; }
}
