/* ═══════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════ */
:root {
  --navy:      #0A1628;
  --blue:      #1A4FD8;
  --blue-hov:  #1540B8;
  --cyan:      #06B6D4;
  --cyan-l:    #22D3EE;
  --white:     #FFFFFF;
  --gray-bg:   #F4F8FF;
  --gray-soft: #EEF3FB;
  --gray-t:    #4B5E78;
  --gray-m:    #8A9BB5;
  --green:     #10B981;
  --orange:    #F97316;
  --shadow:    0 4px 24px rgba(10,22,40,.08);
  --shadow-lg: 0 16px 48px rgba(10,22,40,.14);
  --radius:    14px;
  --radius-sm: 8px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Inter", sans-serif;
  color: var(--navy);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.65;
}
h1,h2,h3,h4 { font-family: "DM Sans", sans-serif; line-height: 1.15; }
img { display: block; max-width: 100%; }

/* ─── skip nav (accesibilidad) ─── */
.skip-nav {
  position: absolute; top: -100px; left: 16px;
  background: var(--blue); color: white;
  padding: 8px 16px; border-radius: var(--radius-sm);
  font-weight: 600; text-decoration: none; z-index: 9999;
  transition: top .2s;
}
.skip-nav:focus { top: 8px; }

/* ─── scrollbar ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--gray-soft); }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 3px; }

/* ═══════════════════════════════════════
   HEADER
═══════════════════════════════════════ */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(26,79,216,.07);
  transition: box-shadow .3s;
}
header.scrolled { box-shadow: 0 2px 24px rgba(10,22,40,.1); }
.header-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 32px; height: 68px;
}
.logo img { height: 3.8rem; }
nav { display: flex; align-items: center; gap: 4px; }
nav a {
  font-size: .87rem; font-weight: 500; color: var(--gray-t);
  text-decoration: none; padding: 7px 14px; border-radius: var(--radius-sm);
  transition: all .2s;
}
nav a:hover, nav a:focus-visible { color: var(--blue); background: rgba(26,79,216,.06); }

.btn-primary {
  background: var(--blue); color: white; border: none; cursor: pointer;
  font-family: "DM Sans", sans-serif; font-weight: 600; font-size: .88rem;
  padding: 10px 22px; border-radius: var(--radius-sm);
  transition: all .25s; text-decoration: none; display: inline-flex; align-items: center; gap: 6px;
  box-shadow: 0 4px 16px rgba(26,79,216,.3);
}
.btn-primary:hover { background: var(--blue-hov); transform: translateY(-1px); box-shadow: 0 6px 24px rgba(26,79,216,.38); }
.btn-primary:focus-visible { outline: 3px solid var(--cyan); outline-offset: 3px; }

.btn-ghost {
  background: transparent; color: var(--blue); border: 1.5px solid var(--blue);
  font-family: "DM Sans", sans-serif; font-weight: 600; font-size: .9rem;
  padding: 11px 24px; border-radius: var(--radius-sm); cursor: pointer;
  transition: all .25s; text-decoration: none; display: inline-flex; align-items: center; gap: 6px;
}
.btn-ghost:hover { background: rgba(26,79,216,.06); transform: translateY(-1px); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; border: none; background: none; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: all .3s; }

/* dropdown */
.dropdown-wrapper { position: relative; }
.dropdown-menu {
  position: absolute; top: calc(100% + 8px); right: 0;
  background: white; border: 1px solid rgba(26,79,216,.1);
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  list-style: none; min-width: 200px; overflow: hidden;
  opacity: 0; pointer-events: none; transform: translateY(-6px);
  transition: all .2s;
}
.dropdown-menu.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
.dropdown-item {
  display: block; padding: 11px 18px; font-size: .875rem;
  color: var(--gray-t); text-decoration: none; transition: all .15s;
}
.dropdown-item:hover { color: var(--blue); background: var(--gray-bg); }

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
  min-height: 100vh; padding: 120px 32px 80px;
  background: linear-gradient(160deg, #EEF4FF 0%, #FAFCFF 55%, #EDF9FB 100%);
  position: relative; overflow: hidden;
  display: flex; align-items: center;
}
.hero-blob { position: absolute; border-radius: 50%; pointer-events: none; }
.hero-blob.b1 { top: -120px; right: -160px; width: 680px; height: 680px; background: radial-gradient(circle, rgba(6,182,212,.13) 0%, transparent 70%); }
.hero-blob.b2 { bottom: -80px; left: -100px; width: 480px; height: 480px; background: radial-gradient(circle, rgba(26,79,216,.09) 0%, transparent 70%); }

.hero-inner {
  max-width: 1200px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(6,182,212,.1); border: 1px solid rgba(6,182,212,.25);
  color: var(--cyan); font-size: .75rem; font-weight: 700;
  padding: 6px 14px; border-radius: 100px;
  margin-bottom: 24px; letter-spacing: .05em; text-transform: uppercase;
}
.hero-badge span { width: 6px; height: 6px; background: var(--cyan); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.5)} }

.hero h1 {
  font-size: clamp(2.1rem, 4.2vw, 3.4rem); font-weight: 800; color: var(--navy);
  margin-bottom: 20px; letter-spacing: -.02em;
}
.hero h1 em { font-style: normal; color: var(--blue); position: relative; }
.hero h1 em::after {
  content: ''; position: absolute; bottom: 2px; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  border-radius: 2px; opacity: .4;
}
.hero-sub { font-size: 1.05rem; color: var(--gray-t); max-width: 520px; margin-bottom: 36px; line-height: 1.75; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust { display: flex; gap: 24px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: .82rem; color: var(--gray-m); font-weight: 500; }
.trust-icon {
  width: 30px; height: 30px; border-radius: var(--radius-sm);
  background: white; box-shadow: var(--shadow);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.trust-icon svg { width: 14px; height: 14px; stroke: var(--blue); }

/* mockup */
.hero-visual { position: relative; }
.mockup-shell {
  background: var(--navy); border-radius: 20px;
  padding: 18px; box-shadow: var(--shadow-lg);
  transform: perspective(1000px) rotateY(-5deg) rotateX(3deg);
  transition: transform .5s ease;
}
.mockup-shell:hover { transform: perspective(1000px) rotateY(-2deg) rotateX(1deg); }
.mockup-topbar { display: flex; align-items: center; gap: 7px; margin-bottom: 14px; padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,.07); }
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot.r{background:#FF5F57} .dot.y{background:#FFBD2E} .dot.g{background:#28C840}
.mockup-title { font-size: .7rem; color: rgba(255,255,255,.35); margin-left: 6px; }
.dashboard { background: #0F1B2F; border-radius: 12px; padding: 14px; }
.dash-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.dash-title { font-family: "DM Sans", sans-serif; font-size: .82rem; font-weight: 700; color: white; }
.dash-badge { background: rgba(6,182,212,.15); color: var(--cyan); font-size: .62rem; padding: 3px 8px; border-radius: 6px; font-weight: 700; }
.kpi-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 8px; margin-bottom: 12px; }
.kpi-card { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07); border-radius: 10px; padding: 10px; }
.kpi-label { font-size: .6rem; color: rgba(255,255,255,.4); margin-bottom: 3px; }
.kpi-value { font-family: "DM Sans", sans-serif; font-size: 1.25rem; font-weight: 700; color: white; }
.kpi-change { font-size: .58rem; color: var(--green); margin-top: 2px; }
.chart-area { background: rgba(255,255,255,.03); border-radius: 10px; padding: 10px; margin-bottom: 10px; }
.chart-label { font-size: .6rem; color: rgba(255,255,255,.3); margin-bottom: 8px; }
.chart-bars { display: flex; align-items: flex-end; gap: 5px; height: 48px; }
.bar { flex: 1; border-radius: 3px 3px 0 0; background: linear-gradient(to top, var(--blue), var(--cyan)); animation: growBar .9s ease forwards; transform-origin: bottom; }
@keyframes growBar { from{transform:scaleY(0)} to{transform:scaleY(1)} }
.activity-list { display: flex; flex-direction: column; gap: 7px; }
.activity-item { display: flex; align-items: center; gap: 8px; }
.activity-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.activity-text { font-size: .65rem; color: rgba(255,255,255,.6); flex: 1; }
.activity-time { font-size: .6rem; color: rgba(255,255,255,.25); }

/* float cards */
.float-card {
  position: absolute; background: white; border-radius: var(--radius);
  padding: 12px 16px; box-shadow: var(--shadow-lg);
  min-width: 120px; backdrop-filter: blur(8px);
}
.float-card.left { bottom: 40px; left: -50px; }
.float-card.top  { top: 10px; right: -30px; }
.float-num { font-family: "DM Sans", sans-serif; font-size: 1.4rem; font-weight: 800; color: var(--navy); }
.float-label { font-size: .72rem; color: var(--gray-m); margin-top: 2px; }
.float-green { font-size: .72rem; color: var(--green); font-weight: 600; margin-top: 4px; }

/* ═══════════════════════════════════════
   LOGOS STRIP
═══════════════════════════════════════ */
.logos-strip { background: var(--gray-bg); padding: 18px 32px; border-top: 1px solid var(--gray-soft); border-bottom: 1px solid var(--gray-soft); }
.logos-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.logos-label { font-size: .78rem; font-weight: 600; color: var(--gray-m); letter-spacing: .04em; text-transform: uppercase; white-space: nowrap; }
.logos-track { display: flex; gap: 10px; flex-wrap: wrap; }
.logo-chip {
  background: white; border: 1px solid rgba(26,79,216,.1);
  color: var(--gray-t); font-size: .78rem; font-weight: 500;
  padding: 6px 14px; border-radius: 100px;
}

/* ═══════════════════════════════════════
   SECTIONS COMMON
═══════════════════════════════════════ */
section { padding: 96px 32px; }
.container { max-width: 1200px; margin: 0 auto; }
.section-eyebrow {
  display: inline-block; font-size: .75rem; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; color: var(--cyan); margin-bottom: 12px;
}
.section-title { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 800; color: var(--navy); margin-bottom: 16px; }
.section-sub { font-size: 1.02rem; color: var(--gray-t); max-width: 600px; line-height: 1.7; }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin: 0 auto 48px; }

/* fade animations */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity .55s ease, transform .55s ease; }
.fade-in.visible { opacity: 1; transform: none; }
.fade-in-delay-1 { transition-delay: .1s; }
.fade-in-delay-2 { transition-delay: .2s; }
.fade-in-delay-3 { transition-delay: .3s; }
.fade-in-delay-4 { transition-delay: .4s; }

/* ═══════════════════════════════════════
   PROBLEM / SOLUTION
═══════════════════════════════════════ */
.ps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.ps-card {
  background: var(--gray-bg); border-radius: var(--radius);
  padding: 32px; border: 1px solid var(--gray-soft);
}
.ps-card.solution { background: var(--blue); color: white; }
.ps-card.solution h3, .ps-card.solution p { color: rgba(255,255,255,.92); }
.ps-card.solution .ps-label { color: rgba(255,255,255,.6); }
.ps-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; background: rgba(255,255,255,.1); }
.ps-icon svg { width: 24px; height: 24px; }
.ps-label { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--gray-m); margin-bottom: 10px; }
.ps-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 12px; }
.ps-card p { font-size: .93rem; color: var(--gray-t); line-height: 1.7; }

/* ═══════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════ */
.how-bg { background: var(--navy); }
.steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.step-card {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius); padding: 28px 24px;
  position: relative;
}
.step-num { font-family: "DM Sans", sans-serif; font-size: 2.2rem; font-weight: 800; color: rgba(255,255,255,.08); margin-bottom: 16px; }
.step-icon { width: 44px; height: 44px; border-radius: 12px; background: rgba(6,182,212,.15); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.step-icon svg { width: 22px; height: 22px; stroke: var(--cyan); }
.step-card h3 { font-size: 1.05rem; font-weight: 700; color: white; margin-bottom: 10px; }
.step-card p { font-size: .9rem; color: rgba(255,255,255,.55); line-height: 1.7; }

/* ═══════════════════════════════════════
   BENEFITS
═══════════════════════════════════════ */
.benefits-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.benefit-card {
  display: flex; gap: 16px; align-items: flex-start;
  background: white; border: 1px solid var(--gray-soft);
  border-radius: var(--radius); padding: 24px;
  box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s;
}
.benefit-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.benefit-icon { width: 44px; height: 44px; border-radius: 12px; background: rgba(26,79,216,.08); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.benefit-icon svg { width: 22px; height: 22px; stroke: var(--blue); }
.benefit-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.benefit-card p { font-size: .88rem; color: var(--gray-t); line-height: 1.65; }

/* ═══════════════════════════════════════
   AUDIENCES
═══════════════════════════════════════ */
.audiences-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.audience-card {
  background: var(--gray-bg); border: 1px solid var(--gray-soft);
  border-radius: var(--radius); padding: 28px 24px; text-align: center;
  transition: transform .25s, box-shadow .25s;
}
.audience-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.audience-emoji { font-size: 2.2rem; margin-bottom: 14px; }
.audience-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.audience-card p { font-size: .88rem; color: var(--gray-t); }

/* ═══════════════════════════════════════
   IMPACT
═══════════════════════════════════════ */
.impact-bg { background: var(--navy); }
.impact-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.impact-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius); padding: 32px 24px; text-align: center;
}
.impact-num { font-family: "DM Sans", sans-serif; font-size: 2.8rem; font-weight: 800; color: var(--cyan-l); margin-bottom: 8px; }
.impact-label { font-size: .9rem; color: rgba(255,255,255,.55); line-height: 1.5; }

/* ═══════════════════════════════════════
   TESTIMONIOS (NUEVO)
═══════════════════════════════════════ */
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testimonial-card {
  background: white; border: 1px solid var(--gray-soft);
  border-radius: var(--radius); padding: 28px 24px;
  box-shadow: var(--shadow); position: relative;
}
.testimonial-card::before {
  content: '"'; position: absolute; top: 16px; left: 20px;
  font-family: "DM Sans", sans-serif; font-size: 4rem; color: rgba(6,182,212,.2); line-height: 1;
}
.testimonial-text { font-size: .93rem; color: var(--gray-t); line-height: 1.75; margin-bottom: 20px; padding-top: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--cyan)); display: flex; align-items: center; justify-content: center; font-weight: 700; color: white; font-size: .88rem; flex-shrink: 0; }
.author-name { font-weight: 700; font-size: .9rem; }
.author-org { font-size: .78rem; color: var(--gray-m); }

/* ═══════════════════════════════════════
   ALLIES CAROUSEL
═══════════════════════════════════════ */
.testimonial-bg { background: var(--gray-bg); }
.allies-carousel-wrap { position: relative; padding: 0 56px; max-width: 1200px; margin: 0 auto; }
.allies-carousel { overflow: hidden; }
.allies-track { display: flex; gap: 24px; transition: transform .35s ease; }
.ally-card { flex: 0 0 128px; display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center; }
.ally-logo { width: 80px; height: 80px; border-radius: 50%; background: white; border: 1px solid var(--gray-soft); box-shadow: var(--shadow); overflow: hidden; display: flex; align-items: center; justify-content: center; }
.ally-logo img { width: 100%; height: 100%; object-fit: contain; padding: 8px; }
.ally-name { font-size: .72rem; color: var(--gray-t); font-weight: 500; max-width: 110px; line-height: 1.3; }
.carousel-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px; border-radius: 50%;
  background: white; border: 1px solid var(--gray-soft);
  box-shadow: var(--shadow); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s; color: var(--navy);
}
.carousel-arrow:hover { background: var(--blue); color: white; border-color: var(--blue); }
.carousel-arrow.left { left: 0; }
.carousel-arrow.right { right: 0; }
.carousel-dots { display: flex; justify-content: center; gap: 8px; margin-top: 28px; }
.carousel-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gray-m); border: none; cursor: pointer; transition: all .2s; }
.carousel-dot.active { background: var(--blue); width: 24px; border-radius: 4px; }

/* ═══════════════════════════════════════
   ABOUT
═══════════════════════════════════════ */
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-values { display: flex; flex-direction: column; gap: 20px; margin-top: 28px; }
.about-value { display: flex; gap: 14px; align-items: flex-start; }
.about-value-icon { font-size: 1.4rem; flex-shrink: 0; }
.about-value h4 { font-size: .95rem; font-weight: 700; margin-bottom: 4px; }
.about-value p { font-size: .88rem; color: var(--gray-t); line-height: 1.65; }
.about-visual { background: var(--gray-bg); border-radius: var(--radius); padding: 32px; border: 1px solid var(--gray-soft); }
.about-stat-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; margin-bottom: 24px; }
.about-stat { text-align: center; }
.about-stat-num { font-family: "DM Sans", sans-serif; font-size: 2.2rem; font-weight: 800; color: var(--blue); }
.about-stat-label { font-size: .8rem; color: var(--gray-t); margin-top: 4px; line-height: 1.4; }
.about-mission { padding: 20px; background: white; border-radius: var(--radius-sm); border: 1px solid var(--gray-soft); }
.about-mission p { font-size: .9rem; color: var(--gray-t); line-height: 1.7; }

/* ═══════════════════════════════════════
   BLOG PREVIEW (NUEVO)
═══════════════════════════════════════ */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.blog-card {
  background: white; border: 1px solid var(--gray-soft);
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); transition: transform .25s, box-shadow .25s;
}
.blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.blog-thumb { height: 180px; background: linear-gradient(135deg, var(--blue), var(--cyan)); display: flex; align-items: center; justify-content: center; }
.blog-thumb span { font-size: 3rem; }
.blog-body { padding: 20px; }
.blog-tag { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--cyan); margin-bottom: 8px; }
.blog-card h3 { font-size: .95rem; font-weight: 700; margin-bottom: 8px; line-height: 1.4; }
.blog-card p { font-size: .85rem; color: var(--gray-t); line-height: 1.65; margin-bottom: 14px; }
.blog-meta { font-size: .75rem; color: var(--gray-m); }
.blog-link { font-size: .83rem; font-weight: 600; color: var(--blue); text-decoration: none; }
.blog-link:hover { text-decoration: underline; }

/* ═══════════════════════════════════════
   CTA FINAL
═══════════════════════════════════════ */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, #1A3A6B 100%);
  padding: 96px 32px; text-align: center;
}
.cta-inner { max-width: 680px; margin: 0 auto; }
.cta-eyebrow { font-size: .75rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: rgba(255,255,255,.45); margin-bottom: 16px; }
.cta-section h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); font-weight: 800; color: white; margin-bottom: 16px; }
.cta-section p { font-size: 1.02rem; color: rgba(255,255,255,.6); line-height: 1.75; margin-bottom: 36px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ═══════════════════════════════════════
   CONTACT FORM (NUEVO)
═══════════════════════════════════════ */
.contact-section { background: var(--gray-bg); }
.contact-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start; }
.contact-info h2 { font-size: 2rem; font-weight: 800; margin-bottom: 14px; }
.contact-info p { font-size: .95rem; color: var(--gray-t); line-height: 1.7; margin-bottom: 28px; }
.contact-detail { display: flex; align-items: center; gap: 10px; font-size: .9rem; color: var(--gray-t); margin-bottom: 12px; }
.contact-detail svg { width: 18px; height: 18px; stroke: var(--blue); flex-shrink: 0; }
.contact-form { background: white; border-radius: var(--radius); padding: 36px; border: 1px solid var(--gray-soft); box-shadow: var(--shadow-lg); }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: .83rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid #D1DBF0; border-radius: var(--radius-sm);
  font-family: "Inter", sans-serif; font-size: .9rem; color: var(--navy);
  background: var(--gray-bg);
  transition: border-color .2s, box-shadow .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,79,216,.12);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit { width: 100%; justify-content: center; font-size: .95rem; padding: 13px; }
.form-submit:disabled { opacity: .7; cursor: not-allowed; }
.form-status { display: none; margin-bottom: 16px; padding: 12px 14px; border-radius: var(--radius-sm); font-size: .9rem; line-height: 1.45; }
.form-status.success { display: block; background: #ecfdf5; color: #047857; border: 1px solid #a7f3d0; }
.form-status.error { display: block; background: #fef2f2; color: #b91c1c; border: 1px solid #fecaca; }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
footer { background: var(--navy); padding: 60px 32px 0; }
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand img { height: 3.2rem; margin-bottom: 14px; }
.footer-desc { font-size: .88rem; color: rgba(255,255,255,.45); line-height: 1.7; max-width: 260px; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px; border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.05);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5); transition: all .2s; text-decoration: none;
}
.social-btn:hover { background: var(--blue); border-color: var(--blue); color: white; }
.social-btn svg { width: 16px; height: 16px; stroke: currentColor; }
.footer-col h4 { font-size: .85rem; font-weight: 700; color: white; margin-bottom: 16px; letter-spacing: .02em; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a { font-size: .85rem; color: rgba(255,255,255,.45); text-decoration: none; transition: color .2s; }
.footer-col ul li a:hover { color: white; }
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; font-size: .78rem; color: rgba(255,255,255,.3);
}
.footer-bottom a { color: rgba(255,255,255,.3); text-decoration: none; transition: color .2s; }
.footer-bottom a:hover { color: rgba(255,255,255,.7); }

/* ═══════════════════════════════════════
   MOBILE
═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .ps-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: repeat(2,1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  section { padding: 64px 20px; }
  nav { display: none; }
  nav.open { display: flex; flex-direction: column; position: fixed; top: 68px; left: 0; right: 0; background: white; padding: 20px; box-shadow: var(--shadow-lg); gap: 4px; }
  .hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; }
  .ps-grid, .benefits-grid, .audiences-grid, .impact-grid, .blog-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .about-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════
   SINGLE POST (NUEVO DISEÑO)
   ═══════════════════════════════════════ */
:root {
  --brand-green:      #00a94f;
  --brand-green-dark: #087d43;
  --brand-blue:       #2455d6;
  --brand-navy:       #101828;
  --brand-text:       #344054;
  --brand-muted:      #667085;
  --brand-line:       #e4e7ec;
  --brand-soft:       #f7faf9;
  --post-shadow:      0 18px 45px rgba(16, 24, 40, .09);
  --radius-lg:        24px;
  --radius-md:        16px;
  --content-w:        760px;
  --container-w:      1180px;
}

/* ─── Artículo: hero ─── */
.article-hero {
  position: relative;
  overflow: hidden;
  padding: 92px 20px 42px;
  background:
    radial-gradient(circle at 10% 5%, rgba(0, 169, 79, .13), transparent 30%),
    linear-gradient(180deg, #f8fcfa 0%, #fff 100%);
}
.article-hero::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -150px;
  width: 360px;
  height: 360px;
  border: 70px solid rgba(36, 85, 214, .035);
  border-radius: 50%;
  pointer-events: none;
}
.article-hero-inner {
  position: relative;
  z-index: 1;
  width: min(100%, 980px);
  margin: auto;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0 0 30px;
  color: var(--brand-muted);
  font-size: 14px;
}
.breadcrumb a { color: var(--brand-blue); font-weight: 650; text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb [aria-current="page"] { overflow: hidden; max-width: 38ch; text-overflow: ellipsis; white-space: nowrap; }

.category {
  display: inline-flex;
  padding: 6px 11px;
  color: var(--brand-green-dark);
  background: #eaf8f0;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.article-hero h1 {
  max-width: 900px;
  margin: 16px 0 18px;
  color: var(--brand-navy);
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(2.25rem, 5vw, 4.35rem);
  line-height: 1.05;
  letter-spacing: -.045em;
}
.article-deck {
  max-width: 760px;
  margin: 0 0 24px;
  color: #475467;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.55;
}
.article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
  color: var(--brand-muted);
  font-size: 14px;
}
.article-meta .author {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #344054;
  font-weight: 700;
}
.author-mark {
  display: grid;
  width: 30px;
  height: 30px;
  color: var(--white);
  background: var(--brand-green);
  border-radius: 50%;
  place-items: center;
  font-size: 12px;
}
.meta-separator { color: #98a2b3; }

/* ─── Artículo: cuerpo ─── */
.article-shell {
  width: min(calc(100% - 40px), 980px);
  margin: 0 auto;
  padding: 36px 0 84px;
}

.featured-image {
  overflow: hidden;
  margin: 0 0 52px;
  background: #e9eef4;
  border-radius: var(--radius-lg);
  box-shadow: var(--post-shadow);
}
.featured-image img { width: 100%; aspect-ratio: 16 / 8.7; object-fit: cover; }
.featured-image figcaption { padding: 10px 18px 14px; color: var(--brand-muted); background: #fff; font-size: 13px; }

.article-content { width: min(100%, var(--content-w)); margin: auto; }
.article-content p { margin: 0 0 1.55em; }
.article-content > p:first-child { color: #1d2939; font-size: 1.23rem; line-height: 1.65; }
.article-content h2,
.article-content h3,
.article-content h4 {
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  color: var(--brand-navy);
  letter-spacing: -.025em;
}
.article-content h2 { margin: 2.2em 0 .65em; font-size: clamp(1.55rem, 3vw, 2rem); line-height: 1.25; }
.article-content h3 { margin: 1.8em 0 .5em; font-size: 1.3rem; line-height: 1.3; }
.article-content h4 { margin: 1.6em 0 .45em; font-size: 1.1rem; line-height: 1.3; }
.article-content a { color: var(--brand-blue); text-decoration: underline; }
.article-content a:hover { color: var(--brand-green-dark); }
.article-content ul, .article-content ol { margin: 0 0 1.55em; padding-left: 1.4em; }
.article-content li { margin-bottom: .5em; }
.article-content blockquote {
  margin: 0 0 1.55em;
  padding: 1em 1.4em;
  color: #1d2939;
  background: var(--brand-soft);
  border-left: 4px solid var(--brand-green);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.article-content img { border-radius: var(--radius-md); }
.article-content figure { margin: 0 0 1.55em; }
.article-content figcaption { margin-top: 8px; color: var(--brand-muted); font-size: 13px; text-align: center; }
.article-content table { width: 100%; margin: 0 0 1.55em; border-collapse: collapse; font-size: 15px; }
.article-content th, .article-content td { padding: 10px 12px; border: 1px solid var(--brand-line); text-align: left; }
.article-content th { background: var(--brand-soft); }
.article-content code { padding: 2px 6px; background: var(--brand-soft); border-radius: 6px; font-size: .9em; }
.article-content pre {
  margin: 0 0 1.55em;
  padding: 18px;
  overflow-x: auto;
  color: #e5e7eb;
  background: var(--brand-navy);
  border-radius: var(--radius-md);
}
.article-content pre code { padding: 0; background: none; }
.article-content .aligncenter { display: block; margin-left: auto; margin-right: auto; }
.article-content .alignleft { float: left; margin: 4px 20px 12px 0; }
.article-content .alignright { float: right; margin: 4px 0 12px 20px; }
.article-content .wp-caption { max-width: 100%; }

/* ─── Botón / CTA ─── */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  color: var(--white);
  background: var(--brand-blue);
  border: 0;
  border-radius: 10px;
  box-shadow: 0 8px 18px rgba(36, 85, 214, .18);
  font: inherit;
  font-size: 15px;
  font-weight: 750;
  text-decoration: none;
  cursor: pointer;
}
.button:hover { background: #1d47b8; transform: translateY(-1px); }

.article-cta {
  position: relative;
  overflow: hidden;
  margin: 52px 0 30px;
  padding: 36px;
  color: var(--white);
  background: linear-gradient(135deg, #087d43 0%, #00a94f 100%);
  border-radius: var(--radius-lg);
}
.article-cta::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -90px;
  width: 220px;
  height: 220px;
  border: 38px solid rgba(255, 255, 255, .10);
  border-radius: 50%;
}
.article-cta h2 {
  position: relative;
  z-index: 1;
  margin: 0 0 10px;
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  color: inherit;
}
.article-cta p {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, .88);
}
.article-cta .button { position: relative; z-index: 1; color: var(--brand-green-dark); background: var(--white); box-shadow: none; }

/* ─── Compartir ─── */
.share-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 0;
  border-top: 1px solid var(--brand-line);
  border-bottom: 1px solid var(--brand-line);
}
.share-label { color: #344054; font-size: 14px; font-weight: 750; }
.share-links { display: flex; flex-wrap: wrap; gap: 10px; }
.share-links a {
  padding: 8px 13px;
  color: #344054;
  background: #f2f4f7;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}
.share-links a:hover { color: var(--brand-blue); background: #eef2ff; }

/* ─── Comentarios ─── */
.comments-area {
  width: min(calc(100% - 40px), var(--content-w));
  margin: 0 auto 90px;
  padding: 0;
}
.section-heading {
  margin: 0 0 10px;
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  color: var(--brand-navy);
  font-size: 1.8rem;
  line-height: 1.25;
}
.section-intro { margin: 0 0 28px; color: var(--brand-muted); font-size: 15px; }

.comment-list { margin: 0 0 42px; padding: 0; list-style: none; }
.comment-list .comment {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 22px;
  background: var(--brand-soft);
  border: 1px solid #eaecf0;
  border-radius: var(--radius-md);
}
.comment-list .comment .children { margin: 22px 0 0; padding-left: 24px; list-style: none; }
.comment-list .comment .children .comment { background: #fff; }
.comment-avatar {
  display: grid;
  width: 48px;
  height: 48px;
  color: var(--brand-green-dark);
  background: #dff5e8;
  border-radius: 50%;
  place-items: center;
  font-weight: 800;
}
.comment-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
}
.comment-author { color: #1d2939; font-size: 15px; font-weight: 800; }
.comment-date { color: var(--brand-muted); font-size: 12px; }
.comment-text p { margin: 0 0 8px; font-size: 15px; line-height: 1.65; }
.comment-awaiting-moderation { color: #b45309; font-size: 13px; }
.comment-list .comment-reply-link { color: var(--brand-blue); font-size: 13px; font-weight: 750; text-decoration: none; }
.comment-list .comment-reply-link:hover { text-decoration: underline; }
.no-comments { color: var(--brand-muted); font-size: 15px; }

.comment-form-wrap {
  padding: 32px;
  border: 1px solid var(--brand-line);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 32px rgba(16, 24, 40, .06);
}
.comment-form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.comment-form .comment-notes,
.comment-form .comment-form-cookies-consent,
.comment-form .form-note,
.comment-form .form-submit { grid-column: 1 / -1; }
.comment-form .comment-notes { margin: 0; color: var(--brand-muted); font-size: 13px; }
.comment-form .comment-form-cookies-consent {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--brand-muted);
  font-size: 13px;
}
.comment-form .comment-form-cookies-consent input { width: auto; min-height: 0; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field-full { grid-column: 1 / -1; }
.comment-form label { color: #344054; font-size: 14px; font-weight: 700; }
.comment-form input,
.comment-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--brand-navy);
  background: var(--white);
  border: 1px solid #d0d5dd;
  border-radius: 10px;
  font: inherit;
  font-size: 15px;
  outline: none;
}
.comment-form textarea { min-height: 150px; resize: vertical; }
.comment-form input:focus,
.comment-form textarea:focus {
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 4px rgba(36, 85, 214, .10);
}
.comment-form .form-note { margin: -4px 0 0; color: var(--brand-muted); font-size: 13px; }
.comment-form .form-submit { margin: 0; }
.comment-form .button { justify-self: start; margin-top: 4px; }

/* ─── Relacionados ─── */
.related { padding: 72px 20px; background: var(--brand-soft); }
.related-inner { width: min(100%, var(--container-w)); margin: auto; }
.related-header { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 28px; }
.related-header h2 {
  margin: 0;
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  color: var(--brand-navy);
  font-size: 2rem;
}
.related-header a { color: var(--brand-blue); font-size: 14px; font-weight: 750; text-decoration: none; }
.related-header a:hover { text-decoration: underline; }
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.post-card {
  overflow: hidden;
  color: inherit;
  background: var(--white);
  border: 1px solid var(--brand-line);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}
.post-card:hover { transform: translateY(-4px); box-shadow: var(--post-shadow); }
.post-card-visual {
  min-height: 150px;
  background: linear-gradient(135deg, #dff5e8, #e7edff);
}
.post-card-visual img { width: 100%; height: 150px; object-fit: cover; }
.post-card-body { padding: 20px; }
.post-card small { color: var(--brand-green-dark); font-weight: 800; text-transform: uppercase; }
.post-card h3 {
  margin: 8px 0 7px;
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  color: var(--brand-navy);
  font-size: 1.08rem;
  line-height: 1.35;
}
.post-card p { margin: 0; color: var(--brand-muted); font-size: 14px; line-height: 1.55; }

/* ─── Responsive single post ─── */
@media (max-width: 860px) {
  .post-grid { grid-template-columns: 1fr; }
  .post-card { display: grid; grid-template-columns: 150px 1fr; }
  .post-card-visual { min-height: 100%; }
  .post-card-visual img { height: 100%; }
}
@media (max-width: 600px) {
  .article-hero { padding: 52px 18px 30px; }
  .breadcrumb { margin-bottom: 22px; }
  .article-hero h1 { font-size: clamp(2.05rem, 11vw, 3rem); }
  .article-shell { width: min(calc(100% - 28px), 980px); padding-top: 22px; }
  .featured-image { margin-bottom: 36px; border-radius: 16px; }
  .featured-image img { aspect-ratio: 4 / 3; }
  .article-cta { padding: 28px 22px; }
  .share-row { align-items: flex-start; flex-direction: column; }
  .comments-area { width: min(calc(100% - 28px), var(--content-w)); margin-bottom: 64px; }
  .comment-list .comment { grid-template-columns: 38px 1fr; padding: 18px 14px; }
  .comment-list .comment .children { padding-left: 12px; }
  .comment-avatar { width: 38px; height: 38px; }
  .comment-form-wrap { padding: 24px 18px; }
  .comment-form { grid-template-columns: 1fr; }
  .comment-form .field-full,
  .comment-form .form-note,
  .comment-form .comment-notes,
  .comment-form .comment-form-cookies-consent,
  .comment-form .form-submit { grid-column: auto; }
  .related { padding: 54px 14px; }
  .related-header { align-items: flex-start; flex-direction: column; }
  .post-card { display: block; }
  .post-card-visual { min-height: 130px; }
  .post-card-visual img { height: 130px; }
}

/* ═══════════════════════════════════════
   RECURSOS (BLOG) — SECCIÓN PORTADA
   ═══════════════════════════════════════ */
:root {
  --ds-green:      #00a94f;
  --ds-green-dark: #087d43;
  --ds-blue:       #2455d6;
  --ds-navy:       #101828;
  --ds-text:       #344054;
  --ds-muted:      #667085;
  --ds-border:     #e4e7ec;
  --ds-surface:    #f5faf7;
  --ds-white:      #ffffff;
  --ds-radius:     24px;
  --ds-shadow:     0 24px 60px rgba(16, 24, 40, .10);
}

.ds-resources {
  position: relative;
  overflow: hidden;
  padding: 84px 24px;
  background:
    radial-gradient(circle at 92% 4%, rgba(36, 85, 214, .07), transparent 27%),
    linear-gradient(180deg, #f8fcfa 0%, #ffffff 72%);
}
.ds-resources::before {
  content: "";
  position: absolute;
  top: 92px;
  right: -140px;
  width: 360px;
  height: 360px;
  border: 70px solid rgba(0, 169, 79, .035);
  border-radius: 50%;
  pointer-events: none;
}
.ds-resources__container {
  position: relative;
  z-index: 1;
  width: min(100%, 1180px);
  margin: 0 auto;
}

.ds-resources__heading {
  margin-bottom: 36px;
  text-align: center;
}
.ds-resources h2 {
  max-width: 620px;
  margin: 0 auto;
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  color: var(--ds-navy);
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.08;
}

.ds-resources__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ds-resource-card {
  display: flex;
  flex-direction: column;
  min-height: 0;
  overflow: hidden;
  color: inherit;
  background: var(--ds-white);
  border: 1px solid var(--ds-border);
  border-radius: var(--ds-radius);
  box-shadow: var(--ds-shadow);
  transition: transform .2s ease, box-shadow .2s ease;
}
.ds-resource-card:hover { transform: translateY(-3px); box-shadow: 0 20px 50px rgba(16, 24, 40, .13); }

.ds-resource-card__media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #dce8e2;
}
.ds-resource-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(16, 24, 40, .10), transparent 45%);
  pointer-events: none;
}
.ds-resource-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}
.ds-resource-card:hover .ds-resource-card__media img { transform: scale(1.025); }
.ds-resource-card__placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 3rem;
}

.ds-resource-card__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px 22px 20px;
}
.ds-resource-card__category {
  align-self: flex-start;
  margin: 0 0 14px;
  padding: 6px 10px;
  color: var(--ds-green-dark);
  background: #e8f7ee;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1.2;
  text-transform: uppercase;
}
.ds-resource-card h3 {
  margin: 0 0 12px;
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  color: var(--ds-navy);
  font-size: 1.2rem;
  font-weight: 780;
  letter-spacing: -.02em;
  line-height: 1.32;
}
.ds-resource-card h3 a { color: inherit; text-decoration: none; }
.ds-resource-card h3 a:hover,
.ds-resource-card h3 a:focus-visible {
  color: var(--ds-blue);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}
.ds-resource-card__excerpt {
  display: -webkit-box;
  overflow: hidden;
  margin: 0 0 20px;
  color: var(--ds-text);
  font-size: 15px;
  line-height: 1.65;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.ds-resource-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
  background: transparent;
  border-top: 1px solid var(--ds-border);
}
.ds-resource-card__date {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ds-muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
}
.ds-resource-card__date svg { width: 16px; height: 16px; color: var(--ds-green-dark); }
.ds-resource-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ds-blue);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.4;
  text-decoration: none;
}
.ds-resource-card__link span { transition: transform .2s ease; }
.ds-resource-card__link:hover span { transform: translateX(4px); }

.ds-resources__actions {
  display: flex;
  justify-content: center;
  margin-top: 38px;
}
.ds-resources__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  color: var(--ds-green-dark);
  background: var(--ds-white);
  border: 1px solid #b7dec8;
  border-radius: 11px;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}
.ds-resources__button:hover {
  color: var(--ds-white);
  background: var(--ds-green-dark);
  transform: translateY(-2px);
}

/* ─── Responsive recursos ─── */
@media (max-width: 1024px) {
  .ds-resources { padding-block: 74px; }
  .ds-resources__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .ds-resources { padding: 58px 16px; }
  .ds-resources__heading { margin-bottom: 28px; }
  .ds-resources__grid { grid-template-columns: 1fr; gap: 18px; }
  .ds-resource-card { border-radius: 18px; }
  .ds-resource-card__media { aspect-ratio: 16 / 10; }
  .ds-resource-card__content { padding: 20px 18px 18px; }
  .ds-resource-card__category { margin-bottom: 12px; }
  .ds-resource-card h3 { margin-bottom: 12px; font-size: 1.15rem; line-height: 1.3; }
  .ds-resource-card__excerpt { margin-bottom: 18px; font-size: 15px; line-height: 1.65; -webkit-line-clamp: 3; }
  .ds-resource-card__footer { align-items: flex-start; flex-direction: column; gap: 12px; padding-top: 16px; }
  .ds-resource-card__link { min-height: 40px; }
  .ds-resources__actions { margin-top: 28px; }
  .ds-resources__button { width: 100%; }
}