@charset "UTF-8";
/**
 * @file
 * Cyber referentes styles — mobile-first.
 * Figma: Desktop 26:3310, Mobile 26:5735.
 *
 * Mobile: white bg, no background image, just text.
 * Desktop (>=992px): bg image with white gradient overlay, text on left.
 */
/* ==========================================================================
   Mobile base (xs)
   ========================================================================== */
.vel-cyber-ref {
  position: relative;
  background: var(--vel-bg-white);
  padding: var(--vel-space-2xl) 0;
  overflow: hidden;
}

.vel-cyber-ref__bg {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-size: auto;
  background-repeat: no-repeat;
  background-position: left top;
  opacity: 0.8;
}

.vel-cyber-ref__overlay {
  display: none;
}

.vel-cyber-ref__inner {
  position: relative;
  z-index: 2;
}

.vel-cyber-ref__content {
  max-width: 100%;
}

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

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

.vel-cyber-ref__body {
  font-family: var(--vel-font-body);
  font-size: var(--vel-text-lg); /* 18px */
  font-weight: 500;
  color: var(--vel-primary);
  line-height: var(--vel-leading-card-body);
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.vel-cyber-ref__body strong,
.vel-cyber-ref__body b {
  font-weight: 700;
}

/* ==========================================================================
   sm (576px)
   ========================================================================== */
@media (min-width: 576px) {
  .vel-cyber-ref__title {
    font-size: var(--vel-text-4xl); /* 48px */
    line-height: var(--vel-leading-heading-md);
  }
}
/* ==========================================================================
   md (768px)
   ========================================================================== */
@media (min-width: 768px) {
  .vel-cyber-ref {
    padding: var(--vel-space-3xl) 0;
  }
  .vel-cyber-ref__body {
    font-size: var(--vel-text-xl); /* 20px */
    line-height: var(--vel-leading-loose); /* 32.5px */
  }
}
/* ==========================================================================
   lg (992px) — Desktop: background image + gradient overlay
   ========================================================================== */
@media (min-width: 992px) {
  .vel-cyber-ref {
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    padding: var(--vel-section-padding) 0;
    background: transparent;
  }
  .vel-cyber-ref__bg {
    background-size: cover;
    background-position: bottom;
    opacity: 1;
  }
  .vel-cyber-ref__overlay {
    display: block;
    position: absolute;
    inset: 0;
    background: linear-gradient(133.3deg, rgb(255, 255, 255) 24.5%, rgba(255, 255, 255, 0) 75.9%);
    z-index: 1;
  }
  .vel-cyber-ref__inner {
    margin: 0 auto;
    width: 100%;
  }
  .vel-cyber-ref__content {
    max-width: 600px;
  }
  .vel-cyber-ref__title {
    margin-bottom: var(--vel-space-3xl);
    font-size: 64px;
    line-height: 68px;
    letter-spacing: var(--vel-tracking-tight);
  }
  .vel-cyber-ref__title::after {
    bottom: -32px;
    height: 10px;
  }
  .vel-cyber-ref__body {
    font-size: var(--vel-text-xl);
    line-height: var(--vel-leading-loose);
  }
}
/* ==========================================================================
   xl (1200px)
   ========================================================================== */
@media (min-width: 1200px) {
  .vel-cyber-ref {
    min-height: 720px;
  }
  .vel-cyber-ref__content {
    max-width: 640px;
  }
  .vel-cyber-ref__title {
    font-size: 72px;
    line-height: var(--vel-leading-heading-lg); /* 72px */
  }
}
/* ==========================================================================
   xxl (1600px) — Full Figma spec sizes
   ========================================================================== */
@media (min-width: 1600px) {
  .vel-cyber-ref {
    min-height: 859px;
  }
  .vel-cyber-ref__content {
    max-width: 679px;
  }
  .vel-cyber-ref__title {
    font-size: var(--vel-text-6xl); /* 80px */
    line-height: var(--vel-leading-heading-xl);
    letter-spacing: var(--vel-tracking-tight); /* -1.8px */
  }
  .vel-cyber-ref__body {
    font-size: var(--vel-text-xl); /* 20px */
    line-height: var(--vel-leading-loose); /* 32.5px */
  }
}
/*# sourceMappingURL=cyber-referentes.css.map */
