:root {
  --light-color: #dee1e1; /* Fondo claro */
  --accent-color: #b2c973;
  --soft-highlight-color: #acca54;
  --primary-color: #93c11c; /* Verde principal */
  --highlight-color: #9fc045;
  --secondary-color: #937584; /* Morado secundario */
  --muted-color: #746c74;
  --neutral-color: #937584;
  --accent-magenta: #a4065b;
}

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

body {
  background-color: var(--light-color);
  color: #3b3b3b;
  font-family: 'Outfit', Arial, sans-serif;
  margin: 0;
  padding: 0;
}


h1, h2, h3 {
  color: var(--primary-color);
  text-shadow: 0 1px 0 rgba(255,255,255,0.4);
}

a {
  color: var(--secondary-color);
  text-decoration: none;
}

a:hover {
  color: var(--highlight-color);
}

.btn-primary {
  background-color: var(--primary-color);
  color: #ffffff;
  border: none;
  padding: 10px 18px;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.18s ease, transform 0.12s ease, box-shadow 0.18s ease;
  box-shadow: 0 6px 18px rgba(14, 30, 37, 0.06);
}

.btn-primary:hover {
  background-color: var(--highlight-color);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  border: 2px solid var(--secondary-color);
  color: var(--secondary-color);
  padding: 9px 16px;
  border-radius: 10px;
  text-decoration: none;
  transition: background-color 0.18s ease, color 0.18s ease, transform 0.12s ease;
  cursor: pointer;
}
.btn-outline:hover {
  background: var(--secondary-color);
  color: #fff;
  transform: translateY(-2px);
}

.gallery img {
  border: 3px solid var(--secondary-color);
  border-radius: 10px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.gallery img:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Layout utilities */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Welcome section */
.welcome-section {
  background: linear-gradient(90deg, rgba(147,193,28,0.04), rgba(147,193,28,0.02));
  padding: 56px 0;
  color: #2b2b2b;
}
.card {
  background: #ffffff;
  border-radius: 14px;
  padding: 0; /* handled by inner elements */
  box-shadow: 0 10px 30px rgba(14, 30, 37, 0.08);
  margin: 18px auto;
}
.welcome-card {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 22px;
  align-items: center;
  padding: 22px;
}
.welcome-illustration {
  display:flex;
  align-items:center;
  justify-content:center;
}
.welcome-copy { padding-right: 6px; }
.eyebrow { text-transform: uppercase; color: var(--primary-color); font-weight: 700; letter-spacing: .6px; margin: 0 0 8px 0; }
.welcome-title { margin: 0 0 10px 0; font-size: 22px; color: var(--secondary-color); }
.welcome-text { margin: 0 0 12px 0; color: #444; line-height: 1.45; }
.welcome-list { margin: 0 0 14px 0; padding-left: 18px; color: #555; }
.welcome-list li { margin-bottom: 6px; }
.welcome-title {
  margin: 0 0 8px 0;
  font-size: 28px;
  color: var(--secondary-color);
}
.welcome-text {
  margin: 0 0 16px 0;
  color: #4b4b4b;
  line-height: 1.5;
}
.welcome-section .btn-primary {
  border-radius: 8px;
  padding: 10px 18px;
  font-weight: 600;
}

@media (min-width: 768px) {
  .welcome-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }
  .welcome-title { font-size: 32px; }
  .welcome-text { max-width: 70%; }
}

@media (max-width: 720px) {
  .welcome-card { grid-template-columns: 1fr; text-align: left; }
  .welcome-illustration { margin-bottom: 8px; }
}

.welcome-actions {
  margin-top: 12px;
}

@media (min-width: 768px) {
  .welcome-actions { margin-top: 0; }
}

  /* Wiki list styles */
  .wiki-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 18px;
  }
  .wiki-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 6px 18px rgba(14,30,37,0.04);
  }
  .wiki-item .meta { color: #6b6b6b; font-size: 13px; }
  .wiki-item .download-link { text-decoration: none; }
  .wiki-item .download-link .btn-outline { padding: 8px 14px; }

  @media (min-width: 700px) {
    .wiki-list { grid-template-columns: repeat(2, 1fr); }
  }

/* Accent styles using requested magenta */
.eyebrow { color: var(--accent-magenta); }
.card h3 { border-left: 4px solid var(--accent-magenta); padding-left: 12px; }
.page-chip { display: inline-block; background: var(--accent-magenta); color: #fff; padding: 4px 8px; border-radius: 8px; font-weight: 700; }




p {
  margin: 0 0 1rem;
  color: #2a3942;
  max-width: 68ch;
}

main {
  animation: pageEnter 0.38s ease-out;
}

@keyframes pageEnter {
  from {
    opacity: 0.01;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

a {
  color: var(--brand-deep);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid #0a3a10;
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: 0.75rem;
  top: -4rem;
  background: #0f1c21;
  color: #fff;
  padding: 0.55rem 0.8rem;
  border-radius: 8px;
  z-index: 9999;
}

.skip-link:focus {
  top: 0.8rem;
}

.container {
  width: min(1180px, calc(100% - 2.2rem));
  margin-inline: auto;
}

.topbar {
  background: #0b2412;
  color: #d5e9d9;
  font-size: 0.8rem;
}

.topbar-inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-block: 0.35rem;
}

.topbar-inner p {
  margin: 0;
}

.topbar a {
  color: #defee1;
  text-decoration: none;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.social-pill {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(195, 248, 198, 0.35);
  border-radius: 999px;
  padding: 0.18rem 0.62rem;
  font-size: 0.75rem;
  background: rgba(195, 248, 198, 0.12);
  color: #e6ffe8;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1200;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #dce5ea;
}

.header-main {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo img {
  display: block;
  width: clamp(160px, 19vw, 228px);
  height: auto;
}

.menu-toggle {
  border: 1px solid #bcd0bf;
  background: #fff;
  color: #17321e;
  font-weight: 700;
  border-radius: 12px;
  padding: 0.52rem 0.82rem;
}

.main-nav {
  position: absolute;
  top: 128px;
  left: 0;
  right: 0;
  display: none;
  flex-direction: column;
  background: #fff;
  border-top: 1px solid #e7edf1;
  border-bottom: 1px solid #dce5ea;
  box-shadow: 0 18px 32px rgba(8, 18, 12, 0.08);
  padding: 0.8rem 1rem 1rem;
}

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

.main-nav > a,
.submenu-toggle {
  border: 0;
  background: transparent;
  text-decoration: none;
  color: var(--ink);
  font-size: 0.96rem;
  font-weight: 700;
  text-align: left;
  padding: 0.54rem 0.2rem;
  cursor: pointer;
}

.nav-group {
  border-bottom: 1px solid #edf2f6;
}

.submenu {
  display: none;
  padding: 0 0.1rem 0.5rem 0.6rem;
}

.nav-group.is-open .submenu {
  display: grid;
  gap: 0.15rem;
}

.submenu a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.9rem;
  padding: 0.32rem 0;
}

.main-nav .is-active,
.submenu .is-active {
  color: var(--brand-deep);
}

.cta-nav {
  margin-top: 0.65rem;
  border-radius: 12px;
  text-align: center;
  text-decoration: none;
  font-weight: 800;
  padding: 0.62rem 0.9rem;
  background: linear-gradient(130deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: #08250f;
}

.hero {
  min-height: min(62vh, 560px);
  position: relative;
  overflow: clip;
  color: #fff;
}

.hero.hero-compact {
  min-height: min(46vh, 420px);
}

.hero.hero-home {
  min-height: min(58vh, 520px);
}

.page-indicator {
  background: #f1f6f8;
  border-bottom: 1px solid #dce5ea;
}

.page-indicator-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
}

.page-indicator p {
  margin: 0;
  color: #31414b;
  font-size: 0.9rem;
}

.page-chip {
  margin: 0 0 0.55rem;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.16);
  color: #f0fff2;
  border-radius: 999px;
  padding: 0.2rem 0.62rem;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  font-weight: 700;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-overlay {
  background:
    linear-gradient(110deg, rgba(7, 20, 14, 0.92) 0%, rgba(10, 34, 22, 0.78) 45%, rgba(18, 60, 33, 0.48) 100%),
    radial-gradient(circle at 80% 20%, rgba(42, 213, 45, 0.34), transparent 46%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: clamp(1.6rem, 7vw, 4rem) 0;
  display: grid;
  gap: 1rem;
  align-items: end;
}

.eyebrow {
  margin: 0 0 0.55rem;
  color: #b7f6bc;
  text-transform: uppercase;
  letter-spacing: 0.085em;
  font-size: 0.77rem;
  font-weight: 700;
}

h1,
h2 {
  font-family: "Merriweather", Georgia, serif;
  letter-spacing: -0.01em;
  line-height: 1.12;
}

h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.85rem, 5.4vw, 3.45rem);
  max-width: 16ch;
}

.lead {
  margin: 0;
  max-width: 60ch;
  color: #e8f2eb;
  font-size: clamp(1rem, 0.96rem + 0.22vw, 1.18rem);
}

.hero-text {
  max-width: 740px;
}

.hero-actions {
  margin-top: 1.3rem;
  display: flex;
  gap: 0.78rem;
  flex-wrap: wrap;
}

.btn {
  text-decoration: none;
  border-radius: 12px;
  padding: 0.72rem 1.06rem;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.btn-primary {
  background: linear-gradient(130deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: #07200b;
  box-shadow: 0 8px 20px rgba(42, 213, 45, 0.28);
}

.btn-outline {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.1);
}

.hero-panel {
  border-radius: 18px;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.33);
  backdrop-filter: blur(8px);
  max-width: 430px;
}

.hero-panel h2 {
  margin: 0 0 0.4rem;
  font-size: 1.35rem;
  color: #fff;
}

.hero-panel p {
  margin: 0 0 0.5rem;
  color: #e4efe8;
  max-width: 34ch;
}

.hero-panel a {
  color: #c8ffcd;
  font-weight: 700;
}

.stats {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.7rem;
}

.stats strong {
  display: block;
  font-size: 1.38rem;
}

.stats span {
  color: #ebf4ee;
  font-size: 0.92rem;
}

.page-content {
  padding: 2.2rem 0 4.2rem;
}

.block {
  margin-bottom: 3.4rem;
}

.feature-row {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 0;
  margin-bottom: 1.6rem;
  align-items: center;
  position: relative;
}

.feature-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  max-height: 340px;
  object-fit: cover;
  display: block;
}

.feature-text .feature-media img {
  aspect-ratio: 16 / 7;
  max-height: 240px;
}

.feature-body {
  padding: clamp(1.2rem, 1.8vw, 2rem);
}

.feature-body p,
.feature-body li {
  font-size: clamp(1rem, 0.98rem + 0.18vw, 1.1rem);
}

.feature-body .clean-list,
.feature-body .timeline {
  max-width: 64ch;
}

.feature-list .feature-body,
.feature-timeline .feature-body {
  background: linear-gradient(180deg, #ffffff 0%, #f9fcfa 100%);
}

h2 {
  margin: 0 0 0.95rem;
  font-size: clamp(1.35rem, 2.7vw, 2.2rem);
  color: #0f2228;
  max-width: 24ch;
}

h3 {
  margin: 0.2rem 0 0.5rem;
  font-size: 1.13rem;
  color: #112229;
}

.cards {
  display: grid;
  gap: 1.35rem;
}

.card {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #fff 0%, #f8fbf9 100%);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.card-media img {
  width: 100%;
  height: 205px;
  object-fit: cover;
  display: block;
}

.card h3,
.card p,
.card .meta {
  padding-inline: 0.95rem;
}

.card h3 {
  margin-top: 0.9rem;
  font-size: 1.22rem;
}

.card p {
  margin-bottom: 1.05rem;
  color: #42505a;
  line-height: 1.66;
  font-size: 0.99rem;
  max-width: 42ch;
}

.meta {
  margin: 0.72rem 0 0;
  color: #1b6d24;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 800;
}

.clean-list {
  margin: 0;
  padding-left: 1.05rem;
}

.clean-list li,
.timeline li {
  margin-bottom: 0.6rem;
  line-height: 1.55;
}

.timeline {
  margin: 0;
  padding-left: 1.15rem;
}

.form-wrap {
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  padding: clamp(1rem, 1.6vw, 1.5rem);
}

.form-intro {
  margin-top: -0.3rem;
  color: #40515b;
}

.contact-social {
  background: #f4faf5;
  border: 1px solid #d8ebda;
  border-radius: 12px;
  padding: 0.75rem 0.9rem;
  margin: 0.2rem 0 0.9rem;
}

.contact-social p {
  margin: 0 0 0.55rem;
  font-size: 0.95rem;
}

.social-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  border: 1px solid #b7d9bc;
  border-radius: 999px;
  padding: 0.38rem 0.75rem;
  font-size: 0.86rem;
  background: #fff;
  text-decoration: none;
}

form {
  display: grid;
  gap: 0.9rem;
}

label {
  display: grid;
  gap: 0.45rem;
  font-weight: 600;
}

input,
textarea {
  width: 100%;
  border: 1px solid #bfd1d8;
  border-radius: 10px;
  padding: 0.72rem;
  font: inherit;
}

.check {
  display: grid;
  grid-template-columns: 1.2rem 1fr;
  gap: 0.55rem;
  align-items: start;
}

.check input {
  margin-top: 0.26rem;
}

.hp-field {
  position: absolute;
  left: -9999px;
}

.flash {
  border-radius: 12px;
  padding: 0.8rem 1rem;
}

.flash-success {
  border: 1px solid #abd7b0;
  background: #effaf0;
}

.flash-error {
  border: 1px solid #dfb0b0;
  background: #fff0f0;
}

.trust-banner {
  padding: 0.9rem 0 2.9rem;
}

.trust-grid {
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(125deg, #0b2511 0%, #1f5f2b 52%, #2ea13d 100%);
  color: #e8f3ea;
  box-shadow: var(--shadow-strong);
  display: grid;
}

.trust-grid > div:first-child {
  padding: clamp(1.1rem, 1.8vw, 1.7rem);
}

.trust-grid h2 {
  color: #fff;
}

.trust-grid p {
  margin: 0;
  color: #d7eadb;
}

.trust-media img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
  display: block;
}

.site-footer {
  background: #09160e;
  color: #d4e4d7;
  padding: 2.4rem 0 1.4rem;
}

.site-footer a {
  color: #bbf8c1;
}

.footer-grid {
  display: grid;
  gap: 1.25rem;
}

.site-footer h2 {
  font-family: "Outfit", "Segoe UI", sans-serif;
  font-size: 1.05rem;
  margin-bottom: 0.55rem;
  color: #f0f6f1;
}

.footer-bottom {
  margin-top: 0.85rem;
  border-top: 1px solid #2a3f2d;
  padding-top: 0.8rem;
  font-size: 0.9rem;
}

@media (max-width: 560px) {
  .topbar-inner p {
    display: none;
  }

  .topbar-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .header-main {
    min-height: 82px;
  }

  .logo img {
    width: clamp(142px, 45vw, 182px);
  }

  .hero-content {
    padding-block: 1.35rem 1.7rem;
  }

  .page-indicator-inner {
    min-height: 38px;
  }

  .page-indicator p {
    font-size: 0.84rem;
  }

  .hero-text,
  .hero-panel {
    max-width: 100%;
  }

  .hero-panel {
    padding: 0.85rem;
  }

  .feature-body {
    padding: 0.95rem;
  }

  .feature-media img {
    max-height: 220px;
  }

  .card-media img {
    height: 185px;
  }

  h2 {
    max-width: 100%;
  }
}

@media (min-width: 768px) {
  .container {
    width: min(1180px, calc(100% - 3rem));
  }

  .hero-text {
    max-width: 690px;
  }
}

@media (min-width: 1024px) {
  .hero.hero-home {
    min-height: min(54vh, 500px);
  }

  .hero.hero-compact {
    min-height: min(43vh, 390px);
  }

  h1 {
    font-size: clamp(2.15rem, 3.35vw, 3.25rem);
  }

  .feature-row {
    margin-bottom: 2rem;
  }
}

@media (min-width: 1080px) {
  .menu-toggle {
    display: none;
  }

  .main-nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    border: 0;
    box-shadow: none;
    padding: 0;
    background: transparent;
  }

  .main-nav > a,
  .submenu-toggle {
    font-size: 0.84rem;
    padding: 0.45rem 0.5rem;
    border-radius: 10px;
    white-space: nowrap;
  }

  .main-nav > a:hover,
  .submenu-toggle:hover {
    background: #ebf8ec;
  }

  .nav-group {
    position: relative;
    border-bottom: 0;
  }

  .submenu {
    position: absolute;
    top: calc(100% + 0.32rem);
    left: 0;
    min-width: 250px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid var(--line);
    box-shadow: 0 16px 30px rgba(10, 24, 16, 0.12);
    padding: 0.5rem 0.75rem;
    display: none;
    z-index: 20;
  }

  .nav-group:hover .submenu,
  .nav-group.is-open .submenu {
    display: grid;
  }

  .submenu a:hover {
    color: var(--brand-deep);
  }

  .cta-nav {
    margin-top: 0;
    margin-left: 0.25rem;
    padding: 0.55rem 0.85rem;
  }

  .hero-content {
    grid-template-columns: 1.4fr 0.8fr;
    align-items: end;
    gap: 1.2rem;
  }

  .feature-row {
    grid-template-columns: minmax(260px, 34%) minmax(0, 1fr);
  }

  .feature-row.reverse {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 34%);
  }

  .feature-row.reverse .feature-media {
    order: 2;
  }

  .feature-row.reverse .feature-body {
    order: 1;
  }

  .feature-body {
    padding: 1.8rem 2rem;
  }

  .feature-body p,
  .feature-body li {
    max-width: 60ch;
  }

  .feature-text {
    grid-template-columns: 1fr;
  }

  .feature-text .feature-media img {
    max-height: 250px;
    width: 100%;
  }

  .cards.cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cards.cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .trust-grid {
    grid-template-columns: 1.2fr 1fr;
  }

  .trust-grid > div:first-child {
    padding: 1.6rem;
  }

  .footer-grid {
    grid-template-columns: 1.3fr 1fr 1fr;
  }
}

@media (min-width: 1250px) {
  .main-nav > a,
  .submenu-toggle {
    font-size: 0.82rem;
    padding-inline: 0.44rem;
  }

  .feature-body,
  .form-wrap,
  .trust-grid > div:first-child {
    padding: 1.7rem;
  }

  .feature-body {
    padding-inline: 2.25rem;
  }
}

@media (min-width: 1440px) {
  .container {
    width: min(1260px, calc(100% - 4rem));
  }

  .hero-content {
    gap: 1.5rem;
  }
}









/* ==============================
   Welcome Section - Centro de Recursos
   ============================== */
#welcome-section, #bienvenida {
  background: linear-gradient(90deg, rgba(147,193,28,0.04), rgba(147,193,28,0.02));
  padding: 4rem 0;
  color: #2b2b2b;
}

#welcome-section .container,
#welcome-section .welcome-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.welcome-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(12, 28, 19, 0.08);
  padding: 2rem;
  margin-top: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.welcome-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 35px rgba(12, 28, 19, 0.12);
}

.welcome-copy {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.eyebrow {
  text-transform: uppercase;
  color: var(--accent-magenta);
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: 0.85rem;
  margin: 0;
}

.welcome-title {
  font-size: clamp(1.6rem, 2.2vw, 2rem);
  color: var(--secondary-color);
  margin: 0.5rem 0;
  line-height: 1.3;
}

.welcome-text {
  font-size: clamp(0.95rem, 1vw + 0.1rem, 1.1rem);
  line-height: 1.6;
  color: #444;
  margin-bottom: 1rem;
}

.welcome-list {
  margin: 1rem 0;
  padding-left: 1.2rem;
  color: #555;
  list-style-type: disc;
}

.welcome-list li {
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

/* Buttons */
.welcome-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.welcome-actions .btn-primary,
.welcome-actions .btn-outline {
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: 10px;
  transition: all 0.2s ease;
}

.welcome-actions .btn-primary {
  background: linear-gradient(130deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: #07200b;
  border: none;
}

.welcome-actions .btn-primary:hover {
  background: linear-gradient(130deg, var(--brand-dark) 0%, var(--brand) 100%);
  transform: translateY(-2px);
}

.welcome-actions .btn-outline {
  border: 2px solid var(--secondary-color);
  background: transparent;
  color: var(--secondary-color);
}

.welcome-actions .btn-outline:hover {
  background: var(--secondary-color);
  color: #fff;
  transform: translateY(-2px);
}

/* Responsive adjustments */
@media (min-width: 768px) {
  .welcome-card {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2.5rem;
  }

  .welcome-text {
    max-width: 90%;
  }
}

@media (max-width: 480px) {
  .welcome-actions {
    flex-direction: column;
  }

  .welcome-actions .btn-primary,
  .welcome-actions .btn-outline {
    width: 100%;
    text-align: center;
  }
}