@charset "UTF-8";
/**
 * @file
 * Section wrapper styles — mobile-first.
 * Controls: Stepper, Cyber section, Resources section, News Home section.
 * Content must NEVER be clipped at any viewport width.
 */
/* ==========================================================================
   Shared section title pattern — Mobile base (xs)
   ========================================================================== */
.vel-section-title {
  font-family: var(--vel-font-heading);
  font-size: var(--vel-text-3xl-plus);
  font-weight: 800;
  color: var(--vel-primary);
  line-height: var(--vel-leading-heading-sm);
  letter-spacing: var(--vel-tracking-snug);
  margin: 0;
  max-width: 279px;
  overflow-wrap: break-word;
  word-wrap: break-word;
  position: relative;
  margin: 0;
  margin-bottom: var(--vel-space-lg);
}

.vel-section-title::after {
  content: "";
  position: absolute;
  bottom: -24px;
  left: 0;
  width: 75px;
  height: 5px;
  background: var(--vel-accent);
}

@media (min-width: 992px) {
  .vel-section-title {
    margin-bottom: var(--vel-space-3xl);
  }
  .vel-section-title::after {
    bottom: -32px;
    height: 10px;
  }
}
/* ==========================================================================
   Shared section header — used by Objectives, Guide Steps, etc.
   ========================================================================== */
.vel-section-header {
  margin-bottom: var(--vel-space-xl);
}

.vel-section-header__title {
  font-family: var(--vel-font-heading);
  font-size: var(--vel-text-3xl-plus);
  font-weight: 800;
  color: var(--vel-primary);
  line-height: var(--vel-leading-heading-sm);
  letter-spacing: var(--vel-tracking-snug);
  margin: 0;
  max-width: 279px;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.vel-section-header__line {
  width: 75px;
  height: 10px;
  background: var(--vel-accent);
  margin-top: var(--vel-space-lg);
}

@media (min-width: 576px) {
  .vel-section-header__title {
    font-size: var(--vel-text-4xl);
    line-height: var(--vel-leading-heading-md);
  }
}
@media (min-width: 992px) {
  .vel-section-header {
    margin-bottom: 64px; /* Figma: 64px gap between title block and body */
  }
  .vel-section-header__title {
    font-size: var(--vel-text-5xl);
    line-height: var(--vel-leading-heading-lg);
    letter-spacing: var(--vel-tracking-tight);
    max-width: none;
  }
  .vel-section-header__line {
    height: 10px;
  }
}
@media (min-width: 1600px) {
  .vel-section-header__title {
    font-size: var(--vel-text-6xl);
    line-height: var(--vel-leading-heading-xl);
  }
}
/* ==========================================================================
   Objectives Section — Mobile base (xs)
   Figma: Conoce el proyecto — 3 objective cards with vertical dividers.
   Mobile: stacked.
   Desktop (>=992px): 3-col row with dividers.
   ========================================================================== */
.vel-objectives {
  background: var(--vel-bg-white);
}

.vel-objectives .vel-section-header__title {
  max-width: 50%;
}

.vel-objectives__grid {
  display: flex;
  flex-direction: column;
  gap: var(--vel-space-2xl);
}

.vel-objectives__divider {
  display: none;
}

@media (min-width: 992px) {
  .vel-section-content {
    display: none;
  }
  .vel-objectives__grid {
    flex-direction: row;
    gap: 0; /* Dividers provide visual separation */
    align-items: stretch;
  }
  .vel-objectives__grid > .vel-objective-card {
    flex: 1 1 0%;
    min-width: 0;
    padding: 0 32px;
  }
  .vel-objectives__grid > .vel-objective-card:first-child {
    padding-left: 0;
  }
  .vel-objectives__grid > .vel-objective-card:last-child {
    padding-right: 0;
  }
  .vel-objectives__divider {
    display: block;
    width: 3px;
    background: var(--vel-secondary);
    flex-shrink: 0;
    align-self: stretch;
  }
}
@media (min-width: 1200px) {
  .vel-objectives__grid > .vel-objective-card {
    padding: 0 40px;
  }
  .vel-objectives__grid > .vel-objective-card:first-child {
    padding-left: 0;
  }
  .vel-objectives__grid > .vel-objective-card:last-child {
    padding-right: 0;
  }
}
@media (min-width: 1600px) {
  .vel-objectives__grid > .vel-objective-card {
    padding: 0 48px;
  }
  .vel-objectives__grid > .vel-objective-card:first-child {
    padding-left: 0;
  }
  .vel-objectives__grid > .vel-objective-card:last-child {
    padding-right: 0;
  }
}
/* ==========================================================================
   Guide Steps Section — Mobile base (xs)
   Figma: Recursos y soporte — 4 step cards.
   Mobile: stacked.
   Desktop (>=992px): 4-col row.
   ========================================================================== */
.vel-guide {
  background: var(--vel-bg-white);
}

.vel-guide .vel-section-header__line {
  height: 5px;
}

.vel-guide__grid {
  display: flex;
  flex-direction: column;
  gap: var(--vel-space-lg);
}

.vel-guide__grid .vel-step-card {
  min-height: 180px;
  height: auto;
}

.vel-guide__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--vel-space-sm);
  width: -moz-fit-content;
  width: fit-content;
  font-family: var(--vel-font-body);
  font-size: var(--vel-text-base);
  font-weight: 700;
  color: var(--vel-primary);
  background: var(--vel-accent);
  padding: 0 24px;
  height: 50px;
  border-radius: var(--vel-btn-radius-mobile);
  text-decoration: none;
  box-shadow: var(--vel-shadow-blue-mobile);
  transition: transform 0.2s ease;
  white-space: nowrap;
}
.vel-guide__cta:hover, .vel-guide__cta:focus {
  transform: translateY(-2px);
  color: var(--vel-primary);
}
.vel-guide__cta {
  color: var(--vel-primary);
  margin-top: var(--vel-space-xl);
  gap: var(--vel-space-md);
}

.vel-guide__cta svg {
  height: 20px;
  width: 20px;
}

@media (min-width: 768px) {
  .vel-guide__grid {
    flex-direction: row;
    flex-wrap: wrap;
    gap: var(--vel-space-lg);
  }
  .vel-guide__grid > * {
    flex: 1 1 calc(50% - var(--vel-space-lg));
    min-width: 0;
  }
}
@media (min-width: 992px) {
  .vel-guide .vel-section-header__line {
    height: 10px;
  }
  .vel-guide__grid {
    gap: var(--vel-space-lg);
  }
  .vel-guide__grid > * {
    flex: 1 1 0%;
    min-width: 0;
    min-height: 255px;
    height: auto;
  }
  .vel-guide__cta {
    padding: 16px 32px;
    height: auto;
    border-radius: var(--vel-card-radius);
    font-size: var(--vel-text-lg);
    box-shadow: var(--vel-shadow-blue);
    margin-top: var(--vel-space-2xl);
  }
}
@media (min-width: 1600px) {
  .vel-guide__grid {
    gap: var(--vel-space-xl);
  }
}
/* ==========================================================================
   CTA Section — Thin wrapper around CTA Banner component.
   ========================================================================== */
.vel-cta-section {
  background: var(--vel-bg-white);
}

/* ==========================================================================
   Process Stepper — hidden on mobile (no mobile design exists)
   ========================================================================== */
.vel-stepper {
  display: none;
}

/* ==========================================================================
   Cyber Section — Mobile base (xs)
   Figma: Desktop 26:1883, Mobile 26:5466.
   Mobile: stacked (title + body + 2 cards + CTA).
   Desktop: 2-col grid (text left + cards right).
   ========================================================================== */
.vel-cyber.vel-section {
  padding-block: var(--vel-space-xl); /* 32px mobile — Figma */
}

.vel-cyber__inner {
  display: flex;
  flex-direction: column;
  gap: var(--vel-space-xl);
}

.vel-cyber__title {
  font-family: var(--vel-font-heading);
  font-size: var(--vel-text-3xl-plus);
  font-weight: 800;
  color: var(--vel-primary);
  line-height: var(--vel-leading-heading-sm);
  letter-spacing: var(--vel-tracking-snug);
  margin: 0;
  max-width: 279px;
  overflow-wrap: break-word;
  word-wrap: break-word;
  position: relative;
  margin: 0;
  margin-bottom: var(--vel-space-lg);
}

.vel-cyber__title::after {
  content: "";
  position: absolute;
  bottom: -24px;
  left: 0;
  width: 75px;
  height: 5px;
  background: var(--vel-accent);
}

/* Mobile: display:contents breaks the text wrapper so title, body, CTA
   become direct flex children of __inner, allowing reorder with order. */
.vel-cyber__text {
  display: contents;
}

.vel-cyber__title {
  order: 0;
}

.vel-cyber__body {
  font-family: var(--vel-font-body);
  font-size: var(--vel-text-lg);
  font-weight: 500;
  color: var(--vel-primary);
  line-height: var(--vel-leading-card-body);
  overflow-wrap: break-word;
  word-wrap: break-word;
  margin-top: var(--vel-space-sm); /* Gap handled by title margin-bottom (24px mixin) + 8px = 32px total */
  margin-bottom: 0;
}
.vel-cyber__body p {
  margin: 0;
}
.vel-cyber__body {
  order: 1;
}

.vel-cyber__cards {
  order: 2;
}

.vel-cyber__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--vel-space-sm);
  width: -moz-fit-content;
  width: fit-content;
  font-family: var(--vel-font-body);
  font-size: var(--vel-text-base);
  font-weight: 700;
  color: var(--vel-primary);
  background: var(--vel-accent);
  padding: 0 24px;
  height: 50px;
  border-radius: var(--vel-btn-radius-mobile);
  text-decoration: none;
  box-shadow: var(--vel-shadow-blue-mobile);
  transition: transform 0.2s ease;
  white-space: nowrap;
}
.vel-cyber__cta:hover, .vel-cyber__cta:focus {
  transform: translateY(-2px);
  color: var(--vel-primary);
}
.vel-cyber__cta {
  order: 3; /* Mobile: CTA after cards */
  align-self: flex-start;
}

.vel-cyber__cards {
  display: flex;
  flex-direction: column;
  gap: var(--vel-space-xl);
}

/* ==========================================================================
   Cyber — sm (576px)
   ========================================================================== */
@media (min-width: 576px) {
  .vel-cyber__title {
    font-size: var(--vel-text-4xl);
    line-height: var(--vel-leading-heading-md);
  }
}
/* ==========================================================================
   Cyber — md (768px)
   ========================================================================== */
@media (min-width: 768px) {
  .vel-cyber__body {
    font-size: var(--vel-text-xl);
    line-height: var(--vel-leading-loose);
  }
}
/* ==========================================================================
   Cyber — lg (992px) — Desktop: 2-col grid
   ========================================================================== */
@media (min-width: 992px) {
  .vel-cyber {
    overflow: hidden;
  }
  .vel-cyber.vel-section {
    padding-block: var(--vel-section-padding); /* 96px desktop */
  }
  .vel-cyber__cta {
    width: auto;
  }
  .vel-cyber__inner {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: var(--vel-space-xl);
    align-items: start;
  }
  /* Desktop: restore text wrapper as block (undo mobile display:contents) */
  .vel-cyber__text {
    display: block;
  }
  .vel-cyber__title,
  .vel-cyber__body,
  .vel-cyber__cards,
  .vel-cyber__cta {
    order: unset;
  }
  .vel-cyber__title {
    font-size: var(--vel-text-4xl);
    line-height: var(--vel-leading-heading-md);
    margin-bottom: var(--vel-space-3xl);
    letter-spacing: var(--vel-tracking-tight);
  }
  .vel-cyber__title::after {
    bottom: -32px;
    height: 10px;
  }
  .vel-cyber__body {
    font-size: var(--vel-text-xl);
    line-height: var(--vel-leading-loose);
    max-width: 552px;
    margin-top: var(--vel-space-lg);
    margin-bottom: var(--vel-space-3xl); /* 64px — Figma gap between body and CTA */
  }
  .vel-cyber__cta {
    padding: 16px 32px;
    height: auto;
    border-radius: var(--vel-card-radius);
    font-size: var(--vel-text-lg);
    box-shadow: var(--vel-shadow-blue);
    gap: var(--vel-space-md);
  }
  .vel-cyber__cards {
    flex-direction: row;
    gap: var(--vel-space-lg);
  }
  .vel-cyber__cards > * {
    flex: 1 1 0%;
    min-width: 0;
  }
}
/* ==========================================================================
   Cyber — xl (1200px)
   ========================================================================== */
@media (min-width: 1200px) {
  .vel-cyber__inner {
    gap: var(--vel-space-2xl);
  }
  .vel-cyber__title {
    font-size: var(--vel-text-5xl);
    line-height: var(--vel-leading-heading-lg);
    letter-spacing: var(--vel-tracking-tight);
    max-width: none;
  }
  .vel-cyber__cards {
    gap: var(--vel-space-xl);
  }
}
/* ==========================================================================
   Cyber — xxl (1600px) — Full Figma spec
   ========================================================================== */
@media (min-width: 1600px) {
  .vel-cyber__inner {
    grid-template-columns: 738fr 1050fr;
  }
  .vel-cyber__title {
    font-size: var(--vel-text-6xl);
    line-height: var(--vel-leading-heading-xl);
  }
  .vel-cyber__cards {
    gap: var(--vel-space-xl);
  }
  .vel-cyber__cards > * {
    flex: 0 0 509px;
  }
}
/* ==========================================================================
   Resources Section — Mobile base (xs)
   Figma: Desktop 26:1948, Mobile 26:5413.
   ========================================================================== */
.vel-resources {
  background: rgba(228, 228, 228, 0.3);
  padding-top: var(--vel-space-3xl); /* 64px mobile */
  padding-bottom: var(--vel-space-xl); /* 32px mobile */
}
@media (min-width: 992px) {
  .vel-resources {
    padding-top: var(--vel-section-padding); /* 96px desktop */
    padding-bottom: var(--vel-section-padding); /* 96px desktop */
  }
}

.vel-resources__header {
  margin-bottom: var(--vel-space-xl);
}

.vel-resources__title {
  font-family: var(--vel-font-heading);
  font-size: var(--vel-text-3xl-plus);
  font-weight: 800;
  color: var(--vel-primary);
  line-height: var(--vel-leading-heading-sm);
  letter-spacing: var(--vel-tracking-snug);
  margin: 0;
  max-width: 279px;
  overflow-wrap: break-word;
  word-wrap: break-word;
  position: relative;
  margin: 0;
  margin-bottom: var(--vel-space-lg);
}

.vel-resources__title::after {
  content: "";
  position: absolute;
  bottom: -24px;
  left: 0;
  width: 75px;
  height: 5px;
  background: var(--vel-accent);
}

.vel-resources__subtitle {
  margin-top: 56px; /* 24px (title mb) + 32px (gap from blue line) — margins don't collapse in flex */
}
.vel-resources__subtitle strong {
  font-weight: 800; /* ExtraBold — matches Figma mobile */
  color: var(--vel-primary); /* Bold text is #00466E even in mobile */
}

.vel-resources__grid {
  display: flex;
  flex-direction: column;
  gap: var(--vel-space-xl); /* 32px between cards mobile */
}

/* Mobile CTA (primary/accent) */
.vel-resources__cta--mobile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--vel-space-sm);
  width: -moz-fit-content;
  width: fit-content;
  font-family: var(--vel-font-body);
  font-size: var(--vel-text-base);
  font-weight: 700;
  color: var(--vel-primary);
  background: var(--vel-accent);
  padding: 0 24px;
  height: 50px;
  border-radius: var(--vel-btn-radius-mobile);
  text-decoration: none;
  box-shadow: var(--vel-shadow-blue-mobile);
  transition: transform 0.2s ease;
  white-space: nowrap;
}
.vel-resources__cta--mobile:hover, .vel-resources__cta--mobile:focus {
  transform: translateY(-2px);
  color: var(--vel-primary);
}
.vel-resources__cta--mobile {
  margin-top: var(--vel-space-xl); /* 32px */
}

/* Desktop CTA (secondary/outline) — base hidden, shown at lg+ */
.vel-resources__cta--desktop {
  display: inline-flex;
  align-items: center;
  gap: var(--vel-space-sm);
  width: -moz-fit-content;
  width: fit-content;
  font-family: var(--vel-font-body);
  font-size: var(--vel-text-base);
  font-weight: 700;
  color: var(--vel-primary);
  background: rgba(255, 255, 255, 0.3);
  border: 2px solid var(--vel-primary);
  padding: 0 24px;
  height: 50px;
  border-radius: var(--vel-btn-radius-mobile);
  text-decoration: none;
  white-space: nowrap;
  margin-top: var(--vel-space-3xl); /* 64px */
  gap: var(--vel-space-md); /* 16px — Figma gap between text and chevron */
}

/* ==========================================================================
   Resources — sm (576px)
   ========================================================================== */
@media (min-width: 576px) {
  .vel-resources__title {
    font-size: var(--vel-text-4xl);
    line-height: var(--vel-leading-heading-md);
  }
}
/* ==========================================================================
   Resources — md (768px)
   ========================================================================== */
@media (min-width: 768px) {
  .vel-resources__grid {
    flex-direction: row;
    flex-wrap: wrap;
    gap: var(--vel-space-lg);
  }
  .vel-resources__grid > * {
    flex: 1 1 calc(50% - var(--vel-space-lg));
    min-width: 0;
  }
  .vel-resources__subtitle {
    max-width: 552px;
  }
  .vel-resources__subtitle strong {
    font-weight: 700; /* Bold in desktop (not ExtraBold like mobile) */
  }
  .vel-resources__header {
    margin-bottom: var(--vel-space-2xl);
  }
}
/* ==========================================================================
   Resources — lg (992px) — Desktop: 3-col
   ========================================================================== */
@media (min-width: 992px) {
  .vel-resources__title {
    font-size: var(--vel-text-5xl);
    line-height: var(--vel-leading-heading-lg);
    letter-spacing: var(--vel-tracking-tight);
    max-width: none;
    margin-bottom: var(--vel-space-3xl);
  }
  .vel-resources__title::after {
    bottom: -32px;
    height: 10px;
  }
  .vel-resources__grid {
    flex-wrap: nowrap;
    gap: var(--vel-space-lg);
    margin-top: 0; /* Grid follows header directly in desktop layout */
  }
  .vel-resources__grid > * {
    flex: 1 1 0%;
    min-width: 0;
  }
  .vel-resources__cta--desktop {
    padding: 16px 32px;
    height: auto;
    border-radius: var(--vel-card-radius);
    font-size: var(--vel-text-lg);
    margin-top: var(--vel-space-3xl); /* 64px */
    text-decoration: none;
  }
  .vel-resources__header {
    margin-bottom: var(--vel-space-3xl); /* 64px gap between header and cards */
  }
}
/* ==========================================================================
   Resources — xxl (1600px) — Full Figma spec
   ========================================================================== */
@media (min-width: 1600px) {
  .vel-resources__title {
    font-size: var(--vel-text-6xl);
    line-height: var(--vel-leading-heading-xl);
  }
  .vel-resources__subtitle {
    margin-top: var(--vel-space-xl);
  }
}
/* ==========================================================================
   News Home Section — Mobile base (xs)
   Figma: Desktop 26:2007, Mobile 26:5529.
   Mobile: 3 cards stacked (4th hidden).
   Desktop: 4 cards in row.
   ========================================================================== */
.vel-news-home {
  background: var(--vel-bg-white);
  padding-top: 32px;
  padding-bottom: 64px;
}

/* Mobile: header just has title (subtitle hidden, CTA after grid).
   Title has margin-bottom:24px + ::after line at bottom:-24px (absolute).
   Line sits at edge of title margin. We need 32px below the line to grid.
   So: 24px (title mb) + 5px (line height, not in flow) → need ~56px total
   to get 32px visual gap below the line. */
.vel-news-home__header {
  margin-bottom: 56px;
}

.vel-news-home__title {
  font-family: var(--vel-font-heading);
  font-size: var(--vel-text-3xl-plus);
  font-weight: 800;
  color: var(--vel-primary);
  line-height: var(--vel-leading-heading-sm);
  letter-spacing: var(--vel-tracking-snug);
  margin: 0;
  max-width: 279px;
  overflow-wrap: break-word;
  word-wrap: break-word;
  position: relative;
  margin: 0;
  margin-bottom: var(--vel-space-lg);
}

.vel-news-home__title::after {
  content: "";
  position: absolute;
  bottom: -24px;
  left: 0;
  width: 75px;
  height: 5px;
  background: var(--vel-accent);
}

/* Mobile: subtitle hidden per Figma 26:5529 (no subtitle in mobile design) */
.vel-news-home__subtitle {
  display: none;
  font-family: var(--vel-font-body);
  font-size: var(--vel-text-lg);
  font-weight: 500;
  color: var(--vel-primary);
  line-height: var(--vel-leading-card-body);
  overflow-wrap: break-word;
  word-wrap: break-word;
  margin-top: var(--vel-space-lg);
}

/* Mobile: gap 32px between cards */
.vel-news-home__grid {
  display: flex;
  flex-direction: column;
  gap: var(--vel-space-xl);
  margin-top: var(--vel-space-xl);
}

/* Hide 4th card on mobile */
.vel-news-home__grid > :nth-child(4) {
  display: none;
}

/* Mobile CTA: primary accent, after grid (Figma "Saber más") */
.vel-news-home__cta--mobile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--vel-space-sm);
  width: -moz-fit-content;
  width: fit-content;
  font-family: var(--vel-font-body);
  font-size: var(--vel-text-base);
  font-weight: 700;
  color: var(--vel-primary);
  background: var(--vel-accent);
  padding: 0 24px;
  height: 50px;
  border-radius: var(--vel-btn-radius-mobile);
  text-decoration: none;
  box-shadow: var(--vel-shadow-blue-mobile);
  transition: transform 0.2s ease;
  white-space: nowrap;
}
.vel-news-home__cta--mobile:hover, .vel-news-home__cta--mobile:focus {
  transform: translateY(-2px);
  color: var(--vel-primary);
}
.vel-news-home__cta--mobile {
  margin-top: var(--vel-space-xl);
}

/* Desktop CTA: hidden on mobile */
.vel-news-home__cta--desktop {
  display: none;
}

/* Chevron icon inside desktop CTA */
.vel-news-home__cta-icon {
  width: 12px;
  height: 19px;
  stroke: currentColor;
}

/* ==========================================================================
   News Home — sm (576px)
   ========================================================================== */
@media (min-width: 576px) {
  .vel-news-home__title {
    font-size: var(--vel-text-4xl);
    line-height: var(--vel-leading-heading-md);
  }
}
/* ==========================================================================
   News Home — md (768px)
   ========================================================================== */
@media (min-width: 768px) {
  .vel-news-home__grid {
    flex-direction: row;
    flex-wrap: wrap;
    gap: var(--vel-space-lg);
  }
  .vel-news-home__grid > * {
    flex: 1 1 calc(50% - var(--vel-space-lg));
    min-width: 0;
  }
  .vel-news-home__header {
    margin-bottom: var(--vel-space-2xl);
  }
}
/* ==========================================================================
   News Home — lg (992px) — Desktop: 4 in row (show 4th card)
   Figma 26:2007: title 80px ExtraBold, subtitle visible, secondary CTA + chevron.
   ========================================================================== */
@media (min-width: 992px) {
  /* Figma desktop: 80px ExtraBold, tracking -1.8px, leading 80px */
  .vel-news-home__title {
    font-size: var(--vel-text-6xl);
    line-height: var(--vel-leading-heading-xl);
    letter-spacing: var(--vel-tracking-tight);
    max-width: none;
    margin-bottom: var(--vel-space-3xl);
  }
  .vel-news-home__title::after {
    bottom: -32px;
    height: 10px;
  }
  /* Desktop: show subtitle — Urbanist Medium 20px, #00466E, max-width 552px */
  .vel-news-home__subtitle {
    display: block;
    font-size: var(--vel-text-xl);
    line-height: var(--vel-leading-loose);
    max-width: 552px;
  }
  .vel-news-home__grid {
    flex-wrap: nowrap;
    gap: var(--vel-space-lg);
    margin-top: var(--vel-space-2xl);
  }
  .vel-news-home__grid > * {
    flex: 1;
    min-width: 0;
  }
  /* Show 4th card on desktop */
  .vel-news-home__grid > :nth-child(4) {
    display: block;
  }
  /* Hide mobile CTA, show desktop CTA */
  .vel-news-home__cta--mobile {
    display: none;
  }
  .vel-news-home__cta--desktop {
    display: inline-flex;
    align-items: center;
    gap: var(--vel-space-sm);
    width: -moz-fit-content;
    width: fit-content;
    font-family: var(--vel-font-body);
    font-size: var(--vel-text-base);
    font-weight: 700;
    color: var(--vel-primary);
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid var(--vel-primary);
    padding: 0 24px;
    height: 50px;
    border-radius: var(--vel-btn-radius-mobile);
    text-decoration: none;
    white-space: nowrap;
    padding: 16px 32px;
    height: auto;
    border-radius: var(--vel-card-radius);
    font-size: var(--vel-text-lg);
  }
  .vel-news-home__cta--desktop:hover, .vel-news-home__cta--desktop:focus {
    background: var(--vel-primary);
    color: var(--vel-bg-white);
  }
  /* 64px between header and grid */
  .vel-news-home__header {
    margin-bottom: 64px;
  }
  /* 64px between subtitle and CTA */
  .vel-news-home__cta--desktop {
    margin-top: 64px;
  }
}
/* ==========================================================================
   Process Stepper — lg (992px) — Desktop only
   Figma: 26:1829. Hidden below 992px.
   ========================================================================== */
@media (min-width: 992px) {
  .vel-stepper {
    display: block;
  }
  .vel-stepper__title {
    font-family: var(--vel-font-heading);
    font-size: var(--vel-text-3xl-plus);
    font-weight: 800;
    color: var(--vel-primary);
    line-height: var(--vel-leading-heading-sm);
    letter-spacing: var(--vel-tracking-snug);
    margin: 0;
    max-width: 279px;
    overflow-wrap: break-word;
    word-wrap: break-word;
    font-size: var(--vel-text-5xl);
    line-height: var(--vel-leading-heading-lg);
    letter-spacing: var(--vel-tracking-tight);
    max-width: none;
    position: relative;
    margin: 0;
    margin-bottom: var(--vel-space-lg);
    margin-bottom: var(--vel-space-3xl);
    margin-bottom: calc(32px + var(--vel-space-3xl)); /* 32px (line) + 64px (gap to cards) = 96px */
  }
  .vel-stepper__title::after {
    content: "";
    position: absolute;
    bottom: -24px;
    left: 0;
    width: 75px;
    height: 5px;
    background: var(--vel-accent);
    bottom: -32px;
    height: 10px;
  }
  .vel-stepper__grid {
    display: flex;
    flex-wrap: wrap;
    gap: var(--vel-space-xl); /* 32px — Figma gap between cards */
    align-items: center;
    margin-top: 0;
    justify-content: center;
    position: relative; /* Anchor for expanded cards (position:absolute) */
  }
  /* Cards wrap into 2 rows (3+2) when viewport is tight. */
  .vel-stepper__grid > * {
    flex: 0 0 auto;
  }
}
/* ==========================================================================
   Stepper — xl (1200px) — Still wrapping, just more gap
   ========================================================================== */
@media (min-width: 1200px) {
  .vel-stepper__grid {
    gap: var(--vel-space-xl);
    margin-top: 56px;
  }
}
/* ==========================================================================
   Stepper — xxl (1600px) — All 5 fit in one row
   ========================================================================== */
@media (min-width: 1600px) {
  .vel-stepper__title {
    font-size: var(--vel-text-6xl);
    line-height: var(--vel-leading-heading-xl);
  }
  .vel-stepper__grid {
    flex-wrap: nowrap;
    gap: var(--vel-space-xl);
    margin-top: 62px;
  }
  .vel-stepper__grid > * {
    flex: 1 1 0%;
    min-width: 0;
  }
}
/* ==========================================================================
   Video block grid (videotutoriales block_1 in Recursos y soporte)
   ========================================================================== */
.vel-video-block__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--vel-space-lg);
}

@media (min-width: 576px) {
  .vel-video-block__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .vel-video-block__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--vel-space-xl);
  }
}
/* ==========================================================================
   Map Section — "Mapa de ayuntamientos seguros"
   Figma: Desktop 26:3310 (Conoce el proyecto).
   Background: rgba(228,228,228,0.3).
   Title: 80px ExtraBold centered, cyan line, subtitle 24px Medium centered.
   ========================================================================== */
.vel-map-section {
  background: rgba(228, 228, 228, 0.3);
  padding: var(--vel-space-2xl) 0;
  overflow: hidden;
}

.vel-map-section__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.vel-map-section__header {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--vel-space-xl);
}

.vel-map-section__header .vel-section-title {
  text-align: left;
}

.vel-map-section__header .vel-section-title::after {
  left: 0;
}

.vel-map-section__subtitle {
  font-family: var(--vel-font-body);
  font-size: var(--vel-text-lg);
  font-weight: 500;
  color: var(--vel-primary);
  line-height: 30px;
  margin: 0;
  max-width: 720px;
  text-align: left;
}

.vel-map-section__map {
  width: 100%;
  max-width: 1597px;
  position: relative;
}

/* md (768px) */
@media (min-width: 768px) {
  .vel-map-section {
    padding: var(--vel-space-3xl) 0;
  }
  .vel-map-section__subtitle {
    font-size: var(--vel-text-xl);
    line-height: 34px;
    max-width: 800px;
  }
}
/* lg (992px) */
@media (min-width: 992px) {
  .vel-map-section {
    padding: var(--vel-section-padding) 0 0;
  }
  .vel-map-section__header {
    width: auto;
    gap: 34px;
    align-items: center;
  }
  .vel-map-section__header .vel-section-title {
    text-align: center;
    max-width: none;
  }
  .vel-map-section__header .vel-section-title::after {
    margin-left: auto;
    height: 10px;
    left: 50%;
  }
  .vel-map-section__subtitle {
    font-size: var(--vel-text-2xl);
    line-height: 39px;
    max-width: 937px;
    text-align: center;
  }
}
/* xxl (1600px) */
@media (min-width: 1600px) {
  .vel-map-section__header .vel-section-title {
    font-size: var(--vel-text-6xl);
    line-height: var(--vel-leading-heading-xl);
  }
}
/*# sourceMappingURL=sections.css.map */
