:root {
  --bg: #f5eff8;
  --bg-soft: #fbf8fc;
  --surface: rgba(255, 250, 255, 0.84);
  --surface-strong: #fffdfd;
  --text: #2f2138;
  --muted: #6f5d79;
  --line: rgba(77, 56, 92, 0.14);
  --primary: #7b4a8e;
  --primary-deep: #5f3671;
  --secondary: #cdb6e3;
  --accent: #8faf9a;
  --shadow: 0 18px 45px rgba(63, 41, 79, 0.13);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background-color: var(--bg-soft);
  background-image: url("background-art.svg");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

img {
  max-width: 100%;
  display: block;
}

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

.site-shell {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
  padding: 1rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 248, 252, 0.8);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.brand-logo {
  width: 74px;
  height: auto;
  flex: 0 0 auto;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 22px rgba(63, 41, 79, 0.12);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.15;
}

.brand-copy strong {
  color: var(--text);
  font-size: 1rem;
  letter-spacing: 0.04em;
}

.menu-toggle {
  display: none;
  border: 0;
  border-radius: 999px;
  background: #fff;
  padding: 0.75rem 1rem;
  font: inherit;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.site-nav a {
  color: var(--muted);
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--primary-deep);
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
  min-height: calc(100vh - 7rem);
  padding: 4rem 0 3rem;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.impact-banner h2,
.hero-card h2 {
  margin: 0;
  font-family: "Newsreader", serif;
  font-weight: 700;
  line-height: 0.98;
}

.hero h1 {
  font-size: clamp(3rem, 5vw, 5.7rem);
  max-width: 12ch;
}

.hero-text,
.panel p,
.service-card p,
.timeline-item p,
.impact-banner p,
.footer-note,
.contact-list {
  color: var(--muted);
  line-height: 1.75;
  font-size: 1.03rem;
}

.hero-text {
  max-width: 62ch;
  margin: 1.4rem 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  color: #fff;
  box-shadow: 0 16px 32px rgba(123, 74, 142, 0.24);
}

.button-whatsapp {
  gap: 0.55rem;
  background: #25d366;
  color: #fff;
  box-shadow: 0 16px 32px rgba(37, 211, 102, 0.24);
}

.button-icon {
  width: 1.1rem;
  height: 1.1rem;
  flex: 0 0 auto;
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.6);
}

.hero-card,
.panel,
.service-card,
.impact-banner {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 2rem;
}

.hero-logo {
  width: min(100%, 220px);
  margin-bottom: 1.2rem;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(63, 41, 79, 0.12);
}

.card-kicker {
  margin: 0 0 1rem;
  color: var(--primary);
  font-weight: 800;
}

.hero-card h2 {
  font-size: clamp(1.9rem, 3vw, 3rem);
  margin-bottom: 1.2rem;
}

.latest-news-feature {
  margin-top: 1.8rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.latest-news-label {
  margin: 0 0 0.8rem;
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.latest-news-link {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1rem;
  align-items: start;
}

.latest-news-thumb {
  width: 110px;
  aspect-ratio: 3 / 5;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: 0 12px 22px rgba(63, 41, 79, 0.12);
}

.latest-news-copy h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
  line-height: 1.2;
}

.latest-news-date {
  margin: 0 0 0.45rem;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.latest-news-copy p {
  margin: 0;
}

.latest-news-cta {
  display: inline-flex;
  margin-top: 0.8rem;
  color: var(--primary-deep);
  font-weight: 800;
}

.feature-list,
.contact-list {
  margin: 0;
  padding-left: 1.2rem;
}

.feature-list li,
.contact-list li {
  margin-bottom: 0.9rem;
}

.section {
  padding: 1rem 0 4rem;
}

.section-light {
  padding: 3rem 2rem 4rem;
  margin: 1rem 0 3rem;
  border: 1px solid var(--line);
  border-radius: 36px;
  background: rgba(255, 252, 255, 0.78);
}

.section-highlight {
  position: relative;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-heading h2,
.impact-banner h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.grid-two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.panel {
  padding: 1.8rem;
}

.panel-accent {
  background: linear-gradient(180deg, rgba(205, 182, 227, 0.28), rgba(255, 255, 255, 0.86));
}

.panel h3,
.service-card h3,
.timeline-item h3 {
  margin-top: 0;
  margin-bottom: 0.85rem;
  font-size: 1.25rem;
}

.contact-form-wrap {
  margin-top: 1.5rem;
}

.contact-quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.2rem;
}

.contact-form {
  padding: 1.8rem;
}

.form-heading {
  margin-bottom: 1.25rem;
}

.form-heading h3 {
  margin: 0 0 0.55rem;
}

.form-heading p,
.form-help {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.1rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.form-field span {
  font-weight: 700;
  color: var(--text);
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(95, 54, 113, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.85);
  padding: 0.95rem 1rem;
  font: inherit;
  color: var(--text);
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(123, 74, 142, 0.12);
  background: #fff;
}

.form-field textarea {
  resize: vertical;
  min-height: 140px;
}

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

.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.2rem;
}

.form-status {
  display: none;
  margin-top: 1rem;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  line-height: 1.6;
  font-weight: 600;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-success {
  background: rgba(143, 175, 154, 0.2);
  border: 1px solid rgba(143, 175, 154, 0.55);
  color: #2f5a41;
}

.form-status.is-error {
  background: rgba(123, 74, 142, 0.1);
  border: 1px solid rgba(123, 74, 142, 0.24);
  color: var(--primary-deep);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
}

.news-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface-strong);
  box-shadow: var(--shadow);
}

.news-card-latest {
  border-color: rgba(123, 74, 142, 0.28);
  background:
    linear-gradient(180deg, rgba(205, 182, 227, 0.08), rgba(255, 255, 255, 0.92)),
    var(--surface-strong);
}

.news-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #ede6f3;
}

.news-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-media-poster img {
  object-fit: contain;
  background: #1a1025;
}

.news-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(47, 33, 56, 0.82);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.news-content {
  padding: 1.35rem 1.35rem 1.5rem;
}

.news-date {
  margin: 0 0 0.7rem;
  color: var(--accent);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.news-content h3 {
  margin: 0 0 0.75rem;
  font-size: 1.3rem;
  line-height: 1.2;
}

.news-content p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.news-link {
  display: inline-flex;
  margin-top: 1rem;
  font-weight: 800;
  color: var(--primary-deep);
}

.news-link:hover,
.news-link:focus-visible {
  color: var(--primary);
}

.external-note {
  margin: 1.25rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.service-card {
  padding: 1.5rem;
  background: var(--surface-strong);
}

.timeline {
  display: grid;
  gap: 1rem;
}

.timeline-item {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--line);
}

.timeline-dot {
  width: 18px;
  height: 18px;
  margin-top: 0.45rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  box-shadow: 0 0 0 8px rgba(123, 74, 142, 0.12);
}

.impact-banner {
  padding: 2.2rem;
  background:
    radial-gradient(circle at top right, rgba(205, 182, 227, 0.26), transparent 20%),
    linear-gradient(135deg, rgba(123, 74, 142, 0.1), rgba(143, 175, 154, 0.12)),
    var(--surface-strong);
}

.site-footer {
  padding: 1rem 0 2.5rem;
  text-align: center;
  color: var(--muted);
}

.site-footer p {
  margin: 0.4rem 0;
}

@media (max-width: 980px) {
  .hero,
  .grid-two,
  .cards-grid,
  .news-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 3rem;
  }

  .hero h1 {
    max-width: none;
  }

  .latest-news-link {
    grid-template-columns: 90px 1fr;
  }

  .latest-news-thumb {
    width: 90px;
  }
}

@media (max-width: 760px) {
  .site-shell {
    width: min(calc(100% - 1rem), var(--container));
  }

  body {
    background-attachment: scroll;
    background-size: auto 1000px;
  }

  .topbar {
    flex-wrap: wrap;
    border-radius: 28px;
  }

  .brand {
    width: calc(100% - 110px);
  }

  .brand-copy {
    font-size: 0.82rem;
  }

  .brand-logo {
    width: 58px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 0.4rem;
  }

  .site-nav.is-open {
    display: flex;
  }

  .section-light {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
    border-radius: 28px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-field-full {
    grid-column: auto;
  }

  .form-actions {
    align-items: flex-start;
    flex-direction: column;
  }
}
