/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:   #2d6a4f;
  --green-light: #52b788;
  --gold:    #d4a017;
  --dark:    #1a1a2e;
  --text:    #333;
  --muted:   #666;
  --bg:      #f9f7f4;
  --white:   #ffffff;
  --radius:  10px;
  --shadow:  0 4px 20px rgba(0,0,0,0.08);
}

html { scroll-behavior: smooth; }
body { font-family: 'Segoe UI', Arial, sans-serif; color: var(--text); background: var(--bg); line-height: 1.7; }

a { color: var(--green); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* ── Header ── */
.site-header {
  background: var(--white);
  border-bottom: 3px solid var(--green);
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.07);
}
.header-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
}
.logo-area { display: flex; align-items: center; gap: 14px; }
.logo-placeholder {
  width: 52px; height: 52px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 18px;
  flex-shrink: 0;
}
.logo-img {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; }
.logo-title { font-weight: 700; font-size: 1.15rem; color: var(--green); }
.logo-sub   { font-size: 0.75rem; color: var(--muted); }

.main-nav { display: flex; gap: 28px; }
.main-nav a { font-weight: 600; color: var(--dark); font-size: 0.95rem; transition: color .2s; }
.main-nav a:hover { color: var(--green); text-decoration: none; }

/* ── Hero ── */
.hero {
  background: linear-gradient(135deg, var(--green) 0%, #1b4332 100%);
  color: var(--white);
  padding: 90px 0;
  text-align: center;
}
.hero h1 { font-size: 3rem; font-weight: 800; margin-bottom: 18px; }
.hero-sub { font-size: 1.2rem; max-width: 600px; margin: 0 auto 32px; opacity: .9; }
.btn-primary {
  background: var(--gold); color: var(--dark);
  padding: 14px 36px; border-radius: 30px;
  font-weight: 700; font-size: 1rem;
  display: inline-block; transition: transform .2s, box-shadow .2s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.2); text-decoration: none; }

/* ── Cards ── */
.section-cards { padding: 80px 0; }
.section-title { text-align: center; font-size: 2rem; font-weight: 700; color: var(--dark); margin-bottom: 48px; }
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 28px; }
.card {
  background: var(--white); border-radius: var(--radius);
  padding: 36px 28px; text-align: center;
  box-shadow: var(--shadow); transition: transform .2s;
}
.card:hover { transform: translateY(-4px); }
.card-icon { font-size: 2.5rem; margin-bottom: 16px; }
.card h3 { font-size: 1.1rem; color: var(--green); margin-bottom: 10px; }
.card p  { color: var(--muted); font-size: .95rem; }

/* ── About preview ── */
.section-about-preview { background: var(--white); padding: 80px 0; }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-text h2 { font-size: 2rem; color: var(--dark); margin-bottom: 20px; }
.about-text p  { color: var(--muted); margin-bottom: 16px; }
.btn-secondary {
  display: inline-block; margin-top: 8px;
  color: var(--green); font-weight: 700; font-size: 1rem;
}
.about-image-placeholder {
  background: linear-gradient(135deg, #b7e4c7, #74c69d);
  border-radius: var(--radius);
  height: 300px; display: flex;
  align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--green); font-weight: 600;
}

/* ── Page Hero (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--green) 0%, #1b4332 100%);
  color: var(--white); padding: 60px 0; text-align: center;
}
.page-hero h1 { font-size: 2.4rem; font-weight: 800; }
.page-hero p  { opacity: .85; margin-top: 10px; font-size: 1.1rem; }

/* ── Content sections ── */
.section-content { padding: 72px 0; }
.content-box {
  background: var(--white); border-radius: var(--radius);
  padding: 48px; box-shadow: var(--shadow);
  max-width: 820px; margin: 0 auto;
}
.content-box h2 { color: var(--green); font-size: 1.5rem; margin: 32px 0 12px; }
.content-box h2:first-child { margin-top: 0; }
.content-box p  { color: var(--muted); margin-bottom: 16px; line-height: 1.8; }
.content-box ul { padding-left: 20px; color: var(--muted); margin-bottom: 16px; }
.content-box ul li { margin-bottom: 8px; }
.content-box strong { color: var(--dark); }

/* Info grid */
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin: 24px 0; }
.info-item {
  background: var(--bg); border-radius: var(--radius);
  padding: 20px 24px; border-left: 4px solid var(--green);
}
.info-item .label { font-size: .8rem; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; }
.info-item .value { font-weight: 700; color: var(--dark); font-size: 1rem; margin-top: 4px; }

/* Verifica page highlight */
.verify-box {
  background: #e8f5e9; border: 2px solid var(--green);
  border-radius: var(--radius); padding: 28px 32px;
  text-align: center; margin: 32px 0;
}
.verify-box p { color: var(--dark); font-size: 1.05rem; margin: 0; }

/* ── Footer ── */
.site-footer { background: var(--dark); color: #ccc; padding: 60px 0 0; }
.footer-inner { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; padding-bottom: 40px; }
.footer-col strong { color: var(--white); display: block; margin-bottom: 14px; font-size: 1rem; }
.footer-col p, .footer-col a { font-size: .9rem; color: #aaa; display: block; margin-bottom: 6px; }
.footer-col a:hover { color: var(--green-light); }
.footer-bottom { border-top: 1px solid #333; padding: 18px 24px; text-align: center; font-size: .82rem; color: #666; }

/* ── Responsive ── */
@media (max-width: 768px) {
  .header-inner { flex-direction: column; gap: 14px; }
  .main-nav { gap: 16px; flex-wrap: wrap; justify-content: center; }
  .hero h1 { font-size: 2rem; }
  .about-inner { grid-template-columns: 1fr; }
  .about-image-placeholder { height: 200px; }
  .info-grid { grid-template-columns: 1fr; }
  .content-box { padding: 28px; }
}
