﻿:root {
  --bg: #f5f6f2;
  --surface: #ffffff;
  --text: #213431;
  --muted: #55706b;
  --accent: #1f7668;
  --accent-2: #d5965e;
  --stroke: #dce4de;
  --shadow: 0 18px 40px rgba(19, 49, 43, 0.12);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 10%, #e2efe9 0, transparent 35%),
    radial-gradient(circle at 90% 80%, #f0e1d3 0, transparent 30%),
    var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
}

.bg-orb {
  position: fixed;
  pointer-events: none;
  z-index: -1;
  filter: blur(4px);
}

.orb-1 {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  top: -60px;
  right: -80px;
  background: linear-gradient(135deg, rgba(213,150,94,0.3), rgba(31,118,104,0.16));
}

.orb-2 {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  bottom: -70px;
  left: -70px;
  background: linear-gradient(135deg, rgba(31,118,104,0.2), rgba(255,255,255,0));
}

.site-header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(10px);
  background: rgba(245, 246, 242, 0.82);
  border-bottom: 1px solid rgba(220, 228, 222, 0.8);
  padding: 14px 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 10;
}

.logo {
  text-decoration: none;
  color: var(--text);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
}

.logo span { color: var(--accent); }

.menu {
  display: flex;
  gap: 24px;
}

.menu a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
  transition: color 0.25s ease;
}

.menu a:hover { color: var(--accent); }

.menu-btn {
  display: none;
  border: 1px solid var(--stroke);
  background: var(--surface);
  color: var(--text);
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 600;
}

.section {
  width: min(1120px, 92vw);
  margin: 0 auto;
  padding: 84px 0;
}

.hero {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 42px;
  align-items: center;
  min-height: calc(100vh - 90px);
  padding-top: 32px;
}

.kicker {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--accent);
  margin: 0 0 10px;
}

h1, h2, h3 {
  margin: 0 0 14px;
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1.1;
}

h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: 1.8rem; }

.subheadline {
  margin: 0 0 30px;
  color: var(--muted);
  max-width: 62ch;
}

.hero-image img {
  width: 100%;
  border-radius: 28px;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.hero-ctas,
.center-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  text-decoration: none;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(145deg, var(--accent), #146155);
  color: #fff;
  box-shadow: 0 10px 24px rgba(31, 118, 104, 0.28);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--stroke);
}

.btn-lg {
  font-size: 1.06rem;
  padding: 14px 28px;
}

.section-header {
  margin-bottom: 28px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.about-grid p,
.center-text {
  margin: 0;
  color: var(--muted);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card {
  background: rgba(255,255,255,0.8);
  border: 1px solid var(--stroke);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(42, 63, 58, 0.08);
}

.card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.card h3, .card p {
  padding: 0 18px;
}

.card h3 { margin-top: 16px; }
.card p {
  margin: 0 0 20px;
  color: var(--muted);
}

.pill-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.pill {
  background: var(--surface);
  border: 1px solid var(--stroke);
  border-radius: 16px;
  padding: 16px;
  color: var(--text);
}

.center-text {
  max-width: 760px;
}

.contact {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  border-top: 1px solid var(--stroke);
}

.site-footer {
  padding: 28px 5vw 36px;
  border-top: 1px solid var(--stroke);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
}

.system-link {
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
}

/* ── Missão, Visão & Valores ── */
.mvv-top-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 56px;
}

.mvv-card {
  border-radius: 24px;
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
}

.mvv-card--missao {
  background: linear-gradient(145deg, #1f7668 0%, #146155 100%);
  color: #fff;
}

.mvv-card--visao {
  background: var(--surface);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
  color: var(--text);
}

.mvv-card-label {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.55rem;
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}

.mvv-card--missao .mvv-card-label {
  color: rgba(255,255,255,0.75);
}

.mvv-card--visao .mvv-card-label {
  color: var(--accent);
}

.mvv-card p {
  margin: 0;
  line-height: 1.7;
  font-size: 0.97rem;
}

.mvv-card--missao p {
  color: rgba(255,255,255,0.88);
}

.mvv-card--visao p {
  color: var(--muted);
}

.mvv-card::before {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  top: -40px;
  right: -40px;
  opacity: 0.12;
  background: #fff;
}

.valores-header {
  margin-bottom: 24px;
}

.valores-header h3 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  margin: 0;
}

.valores-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.valor-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--surface);
  border: 1px solid var(--stroke);
  border-radius: 18px;
  padding: 20px 18px;
  box-shadow: 0 4px 12px rgba(42,63,58,0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.valor-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(42,63,58,0.1);
}

.valor-dot {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 6px;
  box-shadow: 0 0 0 3px rgba(31,118,104,0.18);
}

.valor-item strong {
  display: block;
  font-size: 0.92rem;
  color: var(--text);
  margin-bottom: 5px;
}

.valor-item p {
  margin: 0;
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.55;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero,
  .about-grid,
  .cards,
  .pill-list,
  .contact,
  .mvv-top-grid,
  .valores-grid {
    grid-template-columns: 1fr;
    display: grid;
  }

  .contact {
    align-items: start;
  }

  .menu {
    position: absolute;
    top: 68px;
    right: 5vw;
    background: var(--surface);
    border: 1px solid var(--stroke);
    border-radius: 16px;
    padding: 14px;
    display: none;
    flex-direction: column;
    gap: 10px;
    box-shadow: var(--shadow);
  }

  .menu.open { display: flex; }
  .menu-btn { display: inline-flex; }
}
