/* ===========================================================
   PROJFY · v2 — Design System
   Paleta ejecutiva azul + naranjo / verde de acento
   Tipografías: Montserrat (display) + Open Sans (cuerpo)
   =========================================================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700;800&family=Open+Sans:wght@400;500;600;700&display=swap');

:root {
  --blue-deep: #0B2D4D;
  --blue-petrol: #124E66;
  --blue-light: #1B6FA0;
  --graphite: #1F2933;
  --gray-50: #FFFFFF;
  --gray-100: #F5F7FA;
  --gray-200: #E8ECF1;
  --gray-300: #D1D8E0;
  --gray-500: #6B7480;
  --gray-700: #3D4754;
  --orange: #F28C28;
  --orange-dark: #D9751B;
  --green: #2E7D6B;
  --green-dark: #246154;

  --shadow-sm: 0 1px 2px rgba(11,45,77,0.06), 0 1px 3px rgba(11,45,77,0.04);
  --shadow-md: 0 4px 12px rgba(11,45,77,0.08), 0 2px 4px rgba(11,45,77,0.04);
  --shadow-lg: 0 20px 40px -12px rgba(11,45,77,0.18), 0 8px 16px -8px rgba(11,45,77,0.1);
  --shadow-xl: 0 30px 60px -20px rgba(11,45,77,0.3);

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --radius-xl: 20px;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Open Sans', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: var(--graphite);
  background: var(--gray-50);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--blue-deep);
  line-height: 1.2;
}
h1 { font-size: clamp(34px, 4.6vw, 54px); font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: clamp(28px, 3.4vw, 42px); }
h3 { font-size: clamp(20px, 2vw, 24px); }
h4 { font-size: 18px; }
p { color: var(--gray-700); }

a { color: var(--blue-petrol); text-decoration: none; transition: color 160ms; }
a:hover { color: var(--orange); }
img, svg { display: block; max-width: 100%; }

/* ===== LAYOUT ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 640px) { .container { padding: 0 20px; } }

.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-lg { padding: 128px 0; }
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .section-lg { padding: 80px 0; }
}

.bg-white { background: var(--gray-50); }
.bg-gray { background: var(--gray-100); }
.bg-blue {
  background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue-petrol) 100%);
  color: var(--gray-50);
}
.bg-blue h1, .bg-blue h2, .bg-blue h3, .bg-blue h4 { color: var(--gray-50); }
.bg-blue p { color: rgba(255,255,255,0.85); }

/* ===== TYPOGRAPHY HELPERS ===== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--orange);
}
.bg-blue .eyebrow { color: #FFB46E; }
.bg-blue .eyebrow::before { background: #FFB46E; }

.lead {
  font-size: 18px;
  line-height: 1.65;
  color: var(--gray-700);
  max-width: 640px;
}
.bg-blue .lead { color: rgba(255,255,255,0.9); }

.section-head {
  max-width: 720px;
  margin-bottom: 56px;
}
.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-head h2 { margin-bottom: 16px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 180ms var(--ease), box-shadow 220ms var(--ease), background 160ms, border-color 160ms, color 160ms;
  text-decoration: none;
  line-height: 1;
}
.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 4px 14px -2px rgba(242,140,40,0.45);
}
.btn-primary:hover { background: var(--orange-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 10px 24px -6px rgba(242,140,40,0.6); }
.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.1); border-color: #fff; color: #fff; }
.btn-outline {
  background: transparent;
  color: var(--blue-deep);
  border-color: var(--blue-deep);
}
.btn-outline:hover { background: var(--blue-deep); color: #fff; }
.btn-ghost {
  background: transparent;
  color: var(--blue-deep);
  padding: 10px 0;
  border: none;
  border-bottom: 2px solid transparent;
  border-radius: 0;
}
.btn-ghost:hover { color: var(--orange); }
.btn-lg { padding: 18px 32px; font-size: 15px; }

.btn .arrow {
  width: 16px;
  height: 16px;
  transition: transform 220ms var(--ease);
}
.btn:hover .arrow { transform: translateX(4px); }

/* ===== NAVBAR ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow 200ms, padding 200ms;
}
.nav.scrolled { box-shadow: var(--shadow-md); }
.nav-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 16px 0;
}
.logo {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--blue-deep);
  text-decoration: none;
}
.logo:hover { color: var(--blue-deep); }
.logo-dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--orange);
  margin-left: 1px;
  transform: translateY(-3px);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav-link {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
  border-radius: var(--radius-sm);
  transition: color 160ms, background 160ms;
}
.nav-link:hover { color: var(--blue-deep); background: var(--gray-100); }
.nav-link.active { color: var(--blue-deep); font-weight: 600; }
.nav-link.active::after {
  content: '';
  display: block;
  width: 18px;
  height: 2px;
  background: var(--orange);
  margin: 4px auto 0;
}
.nav-cta {
  margin-left: 12px;
  padding: 10px 18px;
  font-size: 13px;
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  padding: 8px;
}
.nav-toggle svg { width: 26px; height: 26px; }

@media (max-width: 1024px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--gray-200);
    padding: 12px 20px 20px;
    box-shadow: var(--shadow-md);
  }
  .nav-links.open { display: flex; }
  .nav-link { padding: 12px 16px; }
  .nav-cta { margin: 8px 16px 0; text-align: center; justify-content: center; }
  .nav-toggle { display: block; }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 96px 0 96px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--blue-deep) 0%, #0C3A5A 60%, var(--blue-petrol) 100%);
  color: #fff;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 85% 15%, rgba(242,140,40,0.08), transparent 50%),
    radial-gradient(circle at 15% 85%, rgba(46,125,107,0.06), transparent 50%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 960px) {
  .hero { padding: 64px 0; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
}
.hero h1 { color: #fff; margin-bottom: 24px; max-width: 18ch; }
.hero h1 .accent { color: #FFB46E; }
.hero .lead { color: rgba(255,255,255,0.86); margin-bottom: 36px; font-size: 19px; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.14);
}
.hero-meta-item { display: flex; flex-direction: column; gap: 4px; }
.hero-meta-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.hero-meta-val {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: #fff;
}

/* Hero — slim version for inner pages */
.hero-slim { padding: 80px 0 64px; }
.hero-slim h1 { font-size: clamp(32px, 4vw, 44px); max-width: 22ch; }
.hero-slim .hero-inner { grid-template-columns: 1.2fr 1fr; }
@media (max-width: 960px) { .hero-slim .hero-inner { grid-template-columns: 1fr; } }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: #FFB46E; }
.breadcrumb .sep { opacity: 0.5; }

/* ===== CARDS ===== */
.card {
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  padding: 28px;
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), border-color 220ms;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gray-300);
}
.card-icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(11,45,77,0.06);
  border-radius: var(--radius-sm);
  color: var(--blue-deep);
  margin-bottom: 20px;
}
.card-icon svg { width: 26px; height: 26px; }
.card-icon.orange { background: rgba(242,140,40,0.12); color: var(--orange); }
.card-icon.green { background: rgba(46,125,107,0.12); color: var(--green); }
.card h3 { margin-bottom: 8px; font-size: 18px; }
.card p { font-size: 15px; line-height: 1.6; }

/* ===== GRIDS ===== */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 960px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ===== PAIN CARDS ===== */
.pain-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-left: 3px solid var(--orange);
  padding: 24px 26px;
  border-radius: var(--radius-sm);
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), border-left-color 220ms;
}
.pain-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-left-color: var(--blue-deep);
}
.pain-num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--orange);
  line-height: 1;
  min-width: 38px;
}
.pain-text { font-size: 15px; color: var(--graphite); font-weight: 500; line-height: 1.5; }

/* ===== SERVICE CARDS ===== */
.service-card {
  display: block;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  position: relative;
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), border-color 220ms;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 320ms var(--ease);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gray-300);
  color: inherit;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card-icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--blue-deep), var(--blue-petrol));
  color: #fff;
  border-radius: var(--radius-md);
  margin-bottom: 22px;
}
.service-card h3 {
  margin-bottom: 10px;
  font-size: 19px;
}
.service-card p { font-size: 14.5px; margin-bottom: 18px; }
.service-card .more {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.02em;
}
.service-card:hover .more .arrow { transform: translateX(4px); }
.service-card .more .arrow { width: 14px; height: 14px; transition: transform 220ms var(--ease); }

/* ===== OFFER / FEATURED ===== */
.offer-card {
  position: relative;
  background: linear-gradient(135deg, var(--blue-deep), var(--blue-petrol));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 56px 56px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.offer-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 90% 10%, rgba(242,140,40,0.18), transparent 50%),
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: auto, 40px 40px, 40px 40px;
  pointer-events: none;
}
.offer-card > * { position: relative; z-index: 1; }
.offer-card h2 { color: #fff; margin-bottom: 18px; max-width: 16ch; }
.offer-card p { color: rgba(255,255,255,0.86); max-width: 56ch; }
.offer-card .eyebrow { color: #FFB46E; }
.offer-card .eyebrow::before { background: #FFB46E; }
@media (max-width: 768px) { .offer-card { padding: 40px 28px; } }

.deliverables-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 28px;
  margin: 36px 0;
  padding: 32px 0;
  border-top: 1px solid rgba(255,255,255,0.16);
  border-bottom: 1px solid rgba(255,255,255,0.16);
}
@media (max-width: 640px) { .deliverables-list { grid-template-columns: 1fr; } }
.deliverable {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: #fff;
}
.deliverable .check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.deliverable .check svg { width: 12px; height: 12px; }

/* ===== ROADMAP ===== */
.roadmap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
  margin: 36px 0;
}
.roadmap::before {
  content: '';
  position: absolute;
  top: 26px;
  left: 16%; right: 16%;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), rgba(242,140,40,0.4) 50%, rgba(255,255,255,0.2));
  z-index: 0;
}
@media (max-width: 640px) { .roadmap { grid-template-columns: 1fr; gap: 24px; } .roadmap::before { display: none; } }
.roadmap-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 12px;
}
.roadmap-bubble {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 16px;
  box-shadow: 0 0 0 6px rgba(242,140,40,0.18), 0 8px 18px -4px rgba(242,140,40,0.5);
}
.roadmap-step:nth-child(2) .roadmap-bubble { background: #FFB46E; color: var(--blue-deep); }
.roadmap-step:nth-child(3) .roadmap-bubble { background: #fff; color: var(--blue-deep); }
.roadmap-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  margin-bottom: 6px;
}
.roadmap-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}

/* ===== DIFFERENTIATORS / LIST ===== */
.diff-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 640px) { .diff-list { grid-template-columns: 1fr; } }
.diff-item {
  display: flex;
  gap: 18px;
  padding: 22px 24px;
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease);
}
.diff-item:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.diff-num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 24px;
  color: var(--orange);
  line-height: 1;
  min-width: 32px;
}
.diff-content h4 { margin-bottom: 6px; font-size: 16px; }
.diff-content p { font-size: 14px; color: var(--gray-700); line-height: 1.55; }

/* ===== METHODOLOGY TIMELINE ===== */
.method-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin: 40px 0;
  position: relative;
}
.method-list::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--blue-petrol));
}
@media (max-width: 900px) {
  .method-list { grid-template-columns: 1fr; gap: 28px; }
  .method-list::before { display: none; }
}
.method-step {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 14px;
}
.method-bubble {
  width: 48px; height: 48px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--orange);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 16px;
}
.method-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--blue-deep);
  margin-bottom: 6px;
}
.method-desc { font-size: 13px; color: var(--gray-700); }

/* ===== AUDIENCE LIST ===== */
.audience-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .audience-list { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .audience-list { grid-template-columns: 1fr; } }
.audience-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: all 220ms var(--ease);
}
.audience-card:hover {
  transform: translateY(-3px);
  border-color: var(--blue-petrol);
  box-shadow: var(--shadow-md);
}
.audience-marker {
  width: 28px; height: 28px;
  border-radius: 6px;
  background: var(--green);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.audience-marker svg { width: 16px; height: 16px; }
.audience-card h4 { font-size: 16px; margin-bottom: 6px; }
.audience-card p { font-size: 14px; line-height: 1.55; }

/* ===== METRICS ===== */
.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 56px 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}
@media (max-width: 768px) { .metrics { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; } }
.metric { padding-left: 20px; border-left: 3px solid var(--orange); }
.metric-value {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 4vw, 50px);
  color: var(--blue-deep);
  line-height: 1;
  margin-bottom: 8px;
}
.metric-label {
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gray-700);
}

/* ===== CTA STRIP ===== */
.cta-strip {
  background: linear-gradient(135deg, var(--blue-deep), var(--blue-petrol));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 56px 56px;
  display: grid;
  grid-template-columns: 1.5fr auto;
  gap: 32px;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 50%, rgba(242,140,40,0.2), transparent 50%),
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: auto, 32px 32px, 32px 32px;
}
.cta-strip > * { position: relative; z-index: 1; }
.cta-strip h2 { color: #fff; margin-bottom: 12px; max-width: 22ch; }
.cta-strip p { color: rgba(255,255,255,0.85); max-width: 60ch; }
@media (max-width: 800px) {
  .cta-strip { grid-template-columns: 1fr; padding: 40px 28px; }
}

/* ===== FOOTER ===== */
.footer {
  background: var(--graphite);
  color: rgba(255,255,255,0.7);
  padding: 72px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }
.footer .logo { color: #fff; margin-bottom: 18px; font-size: 22px; }
.footer-tag { font-size: 14px; line-height: 1.7; max-width: 280px; margin-bottom: 20px; color: rgba(255,255,255,0.7); }
.footer-col h5 {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 18px;
  font-weight: 600;
}
.footer-col a {
  display: block;
  padding: 6px 0;
  font-size: 14px;
  color: rgba(255,255,255,0.78);
  transition: color 160ms;
}
.footer-col a:hover { color: var(--orange); }
.footer-meta {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  margin-top: 12px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.04em;
}
.footer-bottom b { color: var(--orange); font-weight: 600; }

/* ===== FORM ===== */
.form-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
}
@media (max-width: 640px) { .form-card { padding: 28px 22px; } }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }
.form-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form-field label {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--graphite);
  text-transform: uppercase;
}
.form-field input,
.form-field select,
.form-field textarea {
  padding: 13px 14px;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  color: var(--graphite);
  background: #fff;
  transition: border-color 160ms, box-shadow 160ms;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--blue-petrol);
  box-shadow: 0 0 0 3px rgba(18,78,102,0.15);
}
.form-field textarea { resize: vertical; min-height: 110px; }
.form-foot {
  font-size: 13px;
  color: var(--gray-700);
  margin-top: 18px;
  line-height: 1.6;
}

/* ===== HERO ILLUSTRATION ===== */
.hero-illu {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  overflow: hidden;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero-illu svg { width: 100%; height: 100%; }

/* ===== REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal[data-delay="1"] { transition-delay: 80ms; }
.reveal[data-delay="2"] { transition-delay: 160ms; }
.reveal[data-delay="3"] { transition-delay: 240ms; }
.reveal[data-delay="4"] { transition-delay: 320ms; }

/* ===== ARTICLE LIST (RECURSOS) ===== */
.article-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: inherit;
  transition: all 220ms var(--ease);
}
.article-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gray-300);
  color: inherit;
}
.article-tag {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 600;
}
.article-card h3 { font-size: 19px; line-height: 1.3; }
.article-card p { font-size: 14.5px; flex: 1; }
.article-meta {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  color: var(--gray-500);
  display: flex;
  align-items: center;
  gap: 10px;
}
.article-meta .read {
  color: var(--orange);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.article-card:hover .read .arrow { transform: translateX(4px); }

/* ===== TWO-COLUMN INFO ===== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; gap: 48px; } }
.col-list { list-style: none; padding: 0; }
.col-list li {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-200);
  align-items: flex-start;
}
.col-list li:last-child { border-bottom: none; }
.col-list .marker {
  width: 22px; height: 22px;
  border-radius: 6px;
  background: rgba(242,140,40,0.12);
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.col-list .marker svg { width: 12px; height: 12px; }
.col-list strong { display: block; font-family: 'Montserrat', sans-serif; font-weight: 600; color: var(--blue-deep); font-size: 15px; margin-bottom: 2px; }
.col-list span { font-size: 14px; color: var(--gray-700); }

/* ===== Banner BLUE strip helpers ===== */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0 !important; }
.mt-0 { margin-top: 0 !important; }

/* ===== Print ===== */
@media print {
  .nav, .footer, .btn { display: none !important; }
}

/* ===========================================================
   ARTICLE PAGE (single blog post)
   =========================================================== */
.article-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}

.article-head {
  padding: 72px 0 40px;
  border-bottom: 1px solid var(--gray-200);
  margin-bottom: 48px;
}
.article-head .article-tag {
  display: inline-block;
  margin-bottom: 16px;
}
.article-head h1 {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.18;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.article-head .article-meta {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  color: var(--gray-500);
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.article-head .article-meta .dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--gray-300);
}

.article-featured {
  width: 100%;
  border-radius: var(--radius-lg);
  margin-bottom: 48px;
  box-shadow: var(--shadow-md);
}

/* Body content rendered from WordPress HTML */
.article-body {
  font-size: 17px;
  line-height: 1.78;
  color: var(--graphite);
}
.article-body > * + * { margin-top: 1.2em; }
.article-body h2 {
  font-size: 28px;
  margin-top: 2em;
  margin-bottom: 0.4em;
  color: var(--blue-deep);
}
.article-body h3 {
  font-size: 22px;
  margin-top: 1.8em;
  margin-bottom: 0.3em;
  color: var(--blue-deep);
}
.article-body h4 { font-size: 18px; margin-top: 1.6em; }
.article-body p { color: var(--graphite); }
.article-body a {
  color: var(--blue-petrol);
  border-bottom: 1px solid rgba(18,78,102,0.3);
  font-weight: 600;
}
.article-body a:hover {
  color: var(--orange);
  border-bottom-color: var(--orange);
}
.article-body strong { color: var(--blue-deep); font-weight: 700; }
.article-body em { font-style: italic; }
.article-body ul, .article-body ol {
  padding-left: 1.4em;
  margin: 1em 0;
}
.article-body li { margin-bottom: 0.4em; }
.article-body blockquote {
  border-left: 4px solid var(--orange);
  background: var(--gray-100);
  padding: 20px 24px;
  margin: 1.6em 0;
  font-style: italic;
  color: var(--gray-700);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.article-body blockquote p { color: inherit; margin: 0; }
.article-body img {
  border-radius: var(--radius-md);
  margin: 1.6em 0;
  box-shadow: var(--shadow-sm);
}
.article-body figure { margin: 1.6em 0; }
.article-body figcaption {
  font-size: 13px;
  color: var(--gray-500);
  text-align: center;
  margin-top: 8px;
  font-family: 'Montserrat', sans-serif;
}
.article-body code {
  background: var(--gray-100);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.92em;
  color: var(--blue-petrol);
  font-family: 'SF Mono', Menlo, Consolas, monospace;
}
.article-body pre {
  background: var(--graphite);
  color: #f5f7fa;
  padding: 20px 24px;
  border-radius: var(--radius-md);
  overflow-x: auto;
  font-family: 'SF Mono', Menlo, Consolas, monospace;
  font-size: 14px;
  line-height: 1.6;
  margin: 1.6em 0;
}
.article-body pre code {
  background: none;
  color: inherit;
  padding: 0;
}
.article-body hr {
  border: 0;
  border-top: 1px solid var(--gray-200);
  margin: 2.4em 0;
}
.article-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.6em 0;
  font-size: 15px;
}
.article-body th, .article-body td {
  border: 1px solid var(--gray-200);
  padding: 10px 14px;
  text-align: left;
}
.article-body th {
  background: var(--gray-100);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: var(--blue-deep);
}

.article-foot {
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid var(--gray-200);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.article-foot .share {
  display: flex;
  gap: 8px;
  align-items: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  color: var(--gray-500);
}
.article-foot .share a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--gray-200);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-petrol);
  transition: all 180ms var(--ease);
}
.article-foot .share a:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}

/* Skeleton (loading state) */
.article-skeleton {
  padding: 72px 24px;
  max-width: 760px;
  margin: 0 auto;
}
.article-skeleton .bar {
  background: var(--gray-200);
  border-radius: 4px;
  margin-bottom: 14px;
  animation: shimmer 1.4s infinite;
}
.article-skeleton .bar.tag { width: 90px; height: 14px; }
.article-skeleton .bar.title { width: 80%; height: 36px; margin-bottom: 24px; }
.article-skeleton .bar.line { width: 100%; height: 14px; }
.article-skeleton .bar.line.short { width: 70%; }
@keyframes shimmer {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
