/* ════════════════════════════════════════════════════════════════
   CRÉDITO AUTOMOTRIZ 2.0 — secciones nuevas + overrides del hero.
   Paleta oficial únicamente.
   ════════════════════════════════════════════════════════════════ */

/* ── HERO: limpiar y reequilibrar ─────────────────────────────── */
.caz-hero {
  background: #FFFFFF !important;
  padding-top: clamp(48px, 5.5vw, 76px) !important;
  padding-bottom: clamp(28px, 3.5vw, 48px) !important;
}
/* Shell más ancho: mejor uso horizontal */
.caz-hero .caz-shell {
  max-width: 1360px !important;
  width: 90% !important;
  padding: 0 24px !important;
}
/* Grid: 44% texto / 56% imagen, más horizontal */
.caz-hero-grid-l {
  grid-template-columns: minmax(0, 0.44fr) minmax(0, 0.56fr) !important;
  gap: clamp(24px, 3.5vw, 52px) !important;
  align-items: center !important;
}
/* Tonos de fondo más oficiales */
.caz-hero-glow-a { background: radial-gradient(circle, rgba(54,181,255,.22), transparent 62%) !important; }
.caz-hero-glow-b { background: radial-gradient(circle, rgba(34,74,142,.10), transparent 64%) !important; }
.caz-hero-grid  { opacity: 0.3 !important; }
/* Ocultar chips, ghost link y micro */
.caz-hero .caz-eyebrow { display: none !important; }
.caz-btn-ghost          { display: none !important; }
.caz-hero-micro         { display: none !important; }
.caz-hero-chip          { display: none !important; }
.caz-hero-badges        { display: none !important; }
/* ── HERO: imagen completa sin recortar personas ─────────────────── */
.caz-hero-photo {
  aspect-ratio: 4 / 3 !important;
  border-radius: 20px !important;
  overflow: hidden !important;
  -webkit-mask-image: none !important;
  mask-image: none !important;
}
.caz-hero-photo img {
  object-fit: contain !important;
  object-position: center bottom !important;
  width: 100% !important; height: 100% !important;
  border-radius: 0 !important;
}
/* Glow y media */
.caz-hero-media {
  margin-right: 0 !important;
  max-width: 100% !important;
}
.caz-hero-media-glow {
  background: radial-gradient(58% 54% at 62% 44%, rgba(54,181,255,.20), transparent 70%) !important;
}

/* ── MARCAS ────────────────────────────────────────────────────── */
.caz2-marcas {
  background: #EEF0F5;
  padding: 36px 0;
  overflow: hidden;
}
.caz2-marcas-head {
  text-align: center; margin-bottom: 20px;
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 600; color: #8A97AE;
}
.caz2-track-wrap {
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.caz2-track {
  display: flex; align-items: center; gap: 56px;
  width: max-content; padding: 0 32px;
  animation: caz2Scroll 36s linear infinite;
}
.caz2-marcas:hover .caz2-track { animation-play-state: paused; }
.caz2-brand-item {
  display: flex; align-items: center; justify-content: center;
  flex: 0 0 auto; height: 56px; min-width: 80px;
}
.caz2-brand-item img {
  height: 72px; width: auto; max-width: 180px;
  filter: grayscale(1) contrast(0.8);
  opacity: 0.62;
  transition: opacity .3s ease, transform .3s ease;
  object-fit: contain;
}
.caz2-brand-item:hover img { opacity: 0.9; transform: scale(1.06); }
.caz2-marcas-cta {
  display: flex; justify-content: center; margin-top: 28px;
}
@keyframes caz2Scroll { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .caz2-track { animation: none; } }

/* ── CAMINOS ───────────────────────────────────────────────────── */
.caz2-caminos { background: #FFFFFF; padding: 64px 0; }
.caz2-caminos-shell { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 720px) { .caz2-caminos-shell { padding: 0 20px; } }
.caz2-caminos-head { text-align: center; max-width: 820px; margin: 0 auto 56px; }
.caz2-caminos-head h2 {
  margin: 10px 0 14px; color: #173461;
  font-size: clamp(28px, 3.8vw, 48px); font-weight: 700;
  letter-spacing: -0.025em; line-height: 1.06; text-wrap: balance;
}
.caz2-caminos-head p {
  margin: 0; color: #5B6B86; font-size: clamp(16px, 1.5vw, 19px); line-height: 1.6;
}
.caz2-caminos-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 760px) { .caz2-caminos-grid { grid-template-columns: 1fr; gap: 16px; } }

.caz2-bloque {
  position: relative; overflow: hidden;
  border-radius: 22px; aspect-ratio: 9 / 11; min-height: 480px;
  cursor: default;
  transition: transform .4s cubic-bezier(.16,1,.3,1), box-shadow .4s ease;
}
.caz2-bloque:hover { transform: translateY(-6px); box-shadow: 0 32px 70px -30px rgba(23,52,97,.45); }
.caz2-bloque-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 20%;
  transition: transform .6s cubic-bezier(.16,1,.3,1);
  will-change: transform;
}
.caz2-bloque:hover .caz2-bloque-img { transform: scale(1.03); }
.caz2-bloque-veil {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(23,52,97,.90) 0%, rgba(23,52,97,.45) 44%, rgba(23,52,97,.05) 72%, transparent 100%);
}
.caz2-bloque-tag {
  position: absolute; top: 22px; left: 22px;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 700; color: rgba(255,255,255,.9);
  background: rgba(255,255,255,.12); backdrop-filter: blur(8px);
  padding: 6px 14px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.22);
}
.caz2-bloque-body {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 28px 28px 32px;
}
.caz2-bloque-body h3 {
  margin: 0 0 10px; color: #fff;
  font-size: clamp(20px, 2.2vw, 26px); font-weight: 700;
  letter-spacing: -0.015em; line-height: 1.15;
}
.caz2-bloque-body p {
  margin: 0 0 20px; color: rgba(255,255,255,.78);
  font-size: 15px; line-height: 1.6; max-width: 42ch;
}
.caz2-bloque-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: #36B5FF; color: #0A1A2E;
  font-size: 14px; font-weight: 700;
  padding: 11px 22px; border-radius: 999px;
  transition: background .25s ease, transform .25s ease;
  text-decoration: none;
}
.caz2-bloque-cta:hover { background: #5CC4FF; transform: translateY(-1px); }

/* Reveal de bloques */
.caz2-bloque { opacity: 0; transform: translateY(32px); }
.caz2-bloque.is-in { opacity: 1; transform: none; transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1); }
.caz2-bloque:nth-child(2) { transition-delay: .12s; }
@media (prefers-reduced-motion: reduce) { .caz2-bloque { opacity: 1 !important; transform: none !important; } }

/* ── DATOS ─────────────────────────────────────────────────────── */
.caz2-datos { background: #FFFFFF; padding: 52px 0; border-top: 1px solid #DBDFE5; border-bottom: 1px solid #DBDFE5; }
.caz2-datos-shell { max-width: 1100px; margin: 0 auto; padding: 0 32px; }
.caz2-datos-row { display: flex; align-items: stretch; }
.caz2-dato {
  flex: 1; text-align: center; padding: 8px 28px;
  border-right: 1px solid #DBDFE5;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.caz2-dato:last-child { border-right: none; }
.caz2-dato .num {
  font-size: clamp(36px, 4.4vw, 52px); font-weight: 800;
  letter-spacing: -0.03em; color: #173461; line-height: 1;
}
.caz2-dato .sub {
  font-size: 13px; color: #224A8E; font-weight: 600;
  letter-spacing: 0.02em; line-height: 1.4;
}
.caz2-dato .label { font-size: 12px; color: #8A97AE; font-weight: 500; }
@media (max-width: 640px) {
  .caz2-datos-row { flex-wrap: wrap; }
  .caz2-dato { flex: 1 1 50%; border-right: none; padding: 16px 12px; border-bottom: 1px solid #DBDFE5; }
  .caz2-dato:nth-child(odd) { border-right: 1px solid #DBDFE5; }
  .caz2-dato:nth-last-child(-n+2) { border-bottom: none; }
}

/* ── AGENDA REUNIÓN VIRTUAL ───────────────────────────────────── */
.caz2-agenda { background: #EEF0F5; padding: 64px 0; }
.caz2-agenda-shell { max-width: 1180px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 720px) { .caz2-agenda-shell { padding: 0 20px; } }
.caz2-agenda-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
@media (max-width: 860px) { .caz2-agenda-grid { grid-template-columns: 1fr; gap: 40px; } }
.caz2-agenda-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 700; color: #36B5FF; margin-bottom: 18px;
}
.caz2-agenda-tag .d { width: 6px; height: 6px; border-radius: 50%; background: #36B5FF; }
.caz2-agenda-tx h2 {
  margin: 0 0 16px; color: #173461;
  font-size: clamp(26px, 3.2vw, 42px); font-weight: 700;
  letter-spacing: -0.025em; line-height: 1.08; text-wrap: balance;
}
.caz2-agenda-tx p {
  margin: 0 0 28px; color: #5B6B86;
  font-size: 17px; line-height: 1.62; max-width: 46ch;
}
.caz2-agenda-media {
  position: relative; aspect-ratio: 5 / 4;
  border-radius: 22px; overflow: hidden;
  background: #DBDFE5;
}
.caz2-agenda-media img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center center;
  transition: transform .6s cubic-bezier(.16,1,.3,1);
}
.caz2-agenda-media:hover img { transform: scale(1.03); }
/* Degradado izquierdo: conecta imagen con el texto */
.caz2-agenda-media::after {
  content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background: linear-gradient(to right, #EEF0F5 0%, rgba(238,240,245,.5) 22%, rgba(238,240,245,0) 50%);
}

/* ── FAQ PREGUNTAS FRECUENTES ─────────────────────────────────── */
.caz2-faq { background: #fff; padding: 64px 0; }
.caz2-faq-shell { max-width: 860px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 720px) { .caz2-faq-shell { padding: 0 20px; } }
.caz2-faq-head { margin-bottom: 48px; }
.caz2-faq-head h2 {
  margin: 10px 0 12px; color: #173461;
  font-size: clamp(26px, 3vw, 40px); font-weight: 700;
  letter-spacing: -0.02em;
}
.caz2-faq-head p { margin: 0; color: #5B6B86; font-size: 17px; line-height: 1.6; }
.caz2-faq-list { border-top: 1px solid #DBDFE5; }
.caz2-faq-item { border-bottom: 1px solid #DBDFE5; }
.caz2-faq-q {
  width: 100%; text-align: left; background: none; border: none;
  padding: 22px 0; cursor: pointer; font-family: inherit;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  font-size: 17px; font-weight: 600; color: #173461;
  letter-spacing: -0.01em; line-height: 1.35;
  transition: color .2s ease;
}
.caz2-faq-q:hover { color: #224A8E; }
.caz2-faq-chevron {
  flex-shrink: 0; width: 22px; height: 22px;
  border-radius: 50%; background: #EEF0F5;
  display: grid; place-items: center;
  color: #224A8E;
  transition: transform .3s cubic-bezier(.16,1,.3,1), background .2s ease;
}
.caz2-faq-item.is-open .caz2-faq-chevron { transform: rotate(90deg); background: #224A8E; color: #fff; }
.caz2-faq-body {
  overflow: hidden; max-height: 0;
  transition: max-height .4s cubic-bezier(.16,1,.3,1), padding .3s ease;
  background: #EAF4FF;
  border-radius: 0 0 12px 12px;
}
.caz2-faq-item.is-open .caz2-faq-body { max-height: 400px; }
.caz2-faq-a {
  padding: 14px 20px 18px;
  font-size: 16px; color: #2A3F63; line-height: 1.65;
}

/* ── MODAL FORMULARIO ─────────────────────────────────────────── */
.caz2-modal-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(23,52,97,.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  animation: cazModalIn .3s cubic-bezier(.16,1,.3,1);
}
@keyframes cazModalIn { from { opacity: 0; } to { opacity: 1; } }
.caz2-modal {
  background: #fff; border-radius: 24px;
  max-width: 640px; width: 100%; max-height: 90vh;
  overflow-y: auto; padding: 48px 48px 40px;
  position: relative;
  box-shadow: 0 40px 100px -40px rgba(23,52,97,.6);
  animation: cazModalSlide .4s cubic-bezier(.16,1,.3,1);
}
@keyframes cazModalSlide { from { transform: translateY(28px); opacity: 0; } to { transform: none; opacity: 1; } }
@media (max-width: 720px) { .caz2-modal { padding: 36px 24px 30px; } }
.caz2-modal-close {
  position: absolute; top: 18px; right: 18px;
  width: 36px; height: 36px; border-radius: 50%;
  background: #EEF0F5; border: none; cursor: pointer;
  display: grid; place-items: center; color: #173461;
  font-size: 18px; font-weight: 600;
  transition: background .2s ease;
}
.caz2-modal-close:hover { background: #DBDFE5; }
.caz2-modal-eyebrow {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 700; color: #36B5FF; display: flex; align-items: center; gap: 8px;
  margin-bottom: 14px;
}
.caz2-modal-eyebrow .d { width: 6px; height: 6px; border-radius: 50%; background: #36B5FF; }
.caz2-modal h2 {
  margin: 0 0 10px; font-size: clamp(24px, 3vw, 32px);
  font-weight: 700; letter-spacing: -0.025em; color: #173461;
}
.caz2-modal > p { margin: 0 0 8px; color: #5B6B86; font-size: 16px; line-height: 1.6; }
.caz2-modal-disclaimer {
  font-size: 12px; color: #8A97AE; line-height: 1.55;
  padding: 12px 16px; background: #EEF0F5; border-radius: 10px;
  margin-bottom: 28px !important;
}
/* Progress bar */
.caz2-modal-prog { margin-bottom: 28px; }
.caz2-modal-prog-top { display: flex; justify-content: space-between; font-size: 12px; font-weight: 600; color: #5B6B86; margin-bottom: 8px; }
.caz2-modal-prog-bar { height: 4px; background: #DBDFE5; border-radius: 2px; overflow: hidden; }
.caz2-modal-prog-fill { height: 100%; background: linear-gradient(90deg, #224A8E, #36B5FF); border-radius: 2px; transition: width .4s cubic-bezier(.16,1,.3,1); }
/* Fields */
.caz2-field { margin-bottom: 16px; }
.caz2-field label { display: block; font-size: 12px; font-weight: 600; letter-spacing: 0.06em; color: #2A3F63; margin-bottom: 6px; }
.caz2-input-m {
  width: 100%; padding: 12px 14px; font-size: 15px;
  border: 1.5px solid #DBDFE5; border-radius: 10px;
  color: #173461; font-family: inherit; background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.caz2-input-m:focus { outline: none; border-color: #224A8E; box-shadow: 0 0 0 3px rgba(34,74,142,.1); }
.caz2-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 480px) { .caz2-grid-2 { grid-template-columns: 1fr; } }
.caz2-pill-row { display: flex; flex-wrap: wrap; gap: 8px; }
.caz2-pill-btn {
  padding: 9px 16px; border: 1.5px solid #DBDFE5; border-radius: 999px;
  font-size: 13px; font-weight: 600; color: #5B6B86; background: #fff;
  cursor: pointer; font-family: inherit; transition: all .2s ease;
}
.caz2-pill-btn.on { background: #EEF0F5; border-color: #224A8E; color: #224A8E; }
.caz2-modal-actions { display: flex; justify-content: space-between; align-items: center; margin-top: 28px; padding-top: 20px; border-top: 1px solid #DBDFE5; }
.caz2-back-btn { background: none; border: 1.5px solid #DBDFE5; border-radius: 999px; padding: 11px 20px; font-family: inherit; font-size: 14px; font-weight: 600; color: #5B6B86; cursor: pointer; transition: all .2s ease; display: flex; align-items: center; gap: 8px; }
.caz2-back-btn:hover { border-color: #173461; color: #173461; }
.caz2-done-panel { text-align: center; padding: 20px 0; }
.caz2-done-panel .ic { width: 64px; height: 64px; border-radius: 50%; background: #E4F6EC; border: 1px solid #B4E0C4; display: grid; place-items: center; margin: 0 auto 20px; color: #1A7F3F; }
.caz2-done-panel h3 { margin: 0 0 10px; font-size: 22px; font-weight: 700; color: #173461; }
.caz2-done-panel p { margin: 0; color: #5B6B86; font-size: 15px; line-height: 1.6; }

.caz2-caract { background: #FFFFFF; padding: 64px 0; overflow: hidden; }
.caz2-caract-shell { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
.caz2-caract-grid {
  display: grid; grid-template-columns: 1.22fr 0.78fr;
  gap: 0; align-items: center;
}
@media (max-width: 900px) { .caz2-caract-grid { grid-template-columns: 1fr; gap: 32px; } }

/* ── Car container ── */
.caz2-caract-car {
  position: relative;
  margin-left: -9%;
  overflow: visible;
}
@media (max-width: 900px) { .caz2-caract-car { margin-left: 0; text-align: center; } }

/* Glow azul premium detrás del vehículo */
.caz2-caract-car::before {
  content: '';
  position: absolute;
  inset: 12% 4% 4% 2%;
  background: radial-gradient(circle at 45% 58%,
    rgba(80,200,255,0.22),
    rgba(31,107,255,0.10) 38%,
    rgba(255,255,255,0) 70%);
  filter: blur(22px);
  z-index: 0;
  pointer-events: none;
}

/* Sombra ovalada de base bajo las ruedas */
.caz2-caract-car::after {
  content: '';
  position: absolute;
  width: 68%;
  height: 36px;
  left: 14%;
  bottom: 6%;
  background: radial-gradient(ellipse,
    rgba(20,70,130,0.20),
    rgba(80,200,255,0.08),
    transparent 72%);
  filter: blur(20px);
  z-index: 0;
  pointer-events: none;
}

.caz2-caract-car img {
  position: relative;
  z-index: 1;
  width: 138%; max-width: 880px;
  height: auto; display: block;
  filter:
    brightness(1.08)
    contrast(1.06)
    saturate(1.04)
    drop-shadow(0 34px 55px rgba(16,55,110,0.18));
}
@media (max-width: 900px) { .caz2-caract-car img { width: 82%; max-width: 480px; margin: 0 auto; } }

/* Reveal + parallax — el scale 1.08 y el translate son controlados por JS después de la entrada */
.caz2-caract-car { opacity: 0; transform: translateX(-40px) scale(0.96); }
.caz2-caract-car.is-in {
  opacity: 1;
  transform: translate3d(0,0,0) scale(1.08);
  transition: opacity .9s cubic-bezier(.22,1,.36,1), transform 1.05s cubic-bezier(.22,1,.36,1);
}
@media (prefers-reduced-motion: reduce) {
  .caz2-caract-car { opacity: 1 !important; transform: none !important; }
}

.caz2-caract-box { padding: 16px 0 16px 32px; }
@media (max-width: 900px) { .caz2-caract-box { padding: 0; } }
.caz2-caract-box h2 {
  margin: 0 0 28px; color: #173461;
  font-size: clamp(24px, 2.8vw, 36px); font-weight: 700;
  letter-spacing: -0.02em; line-height: 1.12;
}
.caz2-feat-list { list-style: none; margin: 0 0 32px; padding: 0; }
.caz2-feat-list li {
  padding: 15px 0;
  border-bottom: 1px solid #DBDFE5;
  font-size: clamp(15px, 1.5vw, 17px); color: #173461;
  font-weight: 500; line-height: 1.45;
  opacity: 0; transform: translateY(14px);
}
.caz2-feat-list.is-in li {
  opacity: 1; transform: none;
  transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1);
}
.caz2-feat-list.is-in li:nth-child(1) { transition-delay: .06s; }
.caz2-feat-list.is-in li:nth-child(2) { transition-delay: .13s; }
.caz2-feat-list.is-in li:nth-child(3) { transition-delay: .20s; }
.caz2-feat-list.is-in li:nth-child(4) { transition-delay: .27s; }
.caz2-feat-list.is-in li:nth-child(5) { transition-delay: .34s; }
.caz2-feat-list.is-in li:nth-child(6) { transition-delay: .41s; }
@media (prefers-reduced-motion: reduce) { .caz2-feat-list li { opacity: 1 !important; transform: none !important; } }

/* ════════════════════════════════════════════════════════════════
   HERO V3 — imagen full-bleed, texto flotante izquierda, sin card
   ════════════════════════════════════════════════════════════════ */
.caz2-hero {
  position: relative; overflow: hidden;
  background: #FFFFFF;
  min-height: clamp(380px, 42vw, 560px);
}
/* Imagen: full-bleed alineada a la derecha, sin recorte */
.caz2-hero-bg {
  position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  height: 108%; width: auto;
  max-width: 78%; min-width: 56%;
  object-fit: contain; object-position: right center;
  z-index: 0; pointer-events: none; display: block;
}
@media (max-width: 880px) {
  .caz2-hero { min-height: 0; }
  .caz2-hero-bg {
    position: static; transform: none;
    width: 100%; max-width: none; min-width: 0; height: auto;
    margin-top: 8px;
  }
}
/* Velo blanco→transparente: legibilidad sobre imagen */
.caz2-hero-veil {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(90deg,
    #fff 0%, #fff 26%,
    rgba(255,255,255,.88) 40%,
    rgba(255,255,255,.35) 56%,
    rgba(255,255,255,0) 70%);
}
@media (max-width: 880px) { .caz2-hero-veil { display: none; } }
/* Shell: texto centrado verticalmente a la izquierda */
.caz2-hero-shell {
  position: relative; z-index: 2;
  max-width: 1360px; width: 90%;
  margin: 0 auto; padding: 0 24px;
  min-height: inherit;
  display: flex; align-items: center;
}
.caz2-hero-text-block {
  max-width: 46%;
  padding: clamp(44px, 5vw, 68px) 0;
}
@media (max-width: 880px) {
  .caz2-hero-shell {
    position: static; min-height: 0;
    display: block; padding: 32px 20px 12px;
  }
  .caz2-hero-text-block { max-width: 100%; padding: 0; }
}
.caz2-hero-title {
  font-size: clamp(2.0rem, 4.2vw, 3.5rem);
  font-weight: 800; letter-spacing: -0.035em;
  color: #173461; line-height: 1.06;
  margin: 0 0 14px; text-wrap: balance;
}
.caz2-hero-title .accent {
  background: linear-gradient(96deg, #224A8E 0%, #36B5FF 88%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.caz2-hero-sub {
  font-size: clamp(15px, 1.3vw, 17px);
  color: #5B6B86; line-height: 1.65;
  margin: 0 0 24px; max-width: 42ch;
}
/* Reveal */
.caz2-hero-text-block { opacity: 0; transform: translateY(18px); }
.caz2-hero.caz2h-in .caz2-hero-text-block {
  opacity: 1; transform: none;
  transition: opacity .9s cubic-bezier(.16,1,.3,1) .08s, transform .9s cubic-bezier(.16,1,.3,1) .08s;
}
@media (prefers-reduced-motion: reduce) {
  .caz2-hero-text-block { opacity: 1 !important; transform: none !important; }
}

/* ── ESCUDO FLOTANTE CREDITPRO ─────────────────────────────────── */
@keyframes caz2-shield-float {
  0%,100% { transform: translateY(0px)  scale(1);     }
  50%     { transform: translateY(-4px) scale(1.015); }
}
.caz2-hero-shield {
  position: absolute;
  right: 70px;
  bottom: 52px;
  z-index: 8;
  width: 68px;
  height: auto;
  pointer-events: none;
  user-select: none;
  background: transparent;
  mix-blend-mode: multiply;
  filter:
    drop-shadow(0 6px 14px rgba(10, 35, 80, 0.30))
    drop-shadow(0 0 10px rgba(44, 159, 255, 0.20));
  animation: caz2-shield-float 5s ease-in-out infinite;
}
@media (max-width: 1100px) {
  .caz2-hero-shield { width: 58px; right: 56px; bottom: 42px; }
}
@media (max-width: 880px) {
  .caz2-hero-shield { width: 46px; right: 14px; bottom: 14px; mix-blend-mode: normal; }
}
@media (prefers-reduced-motion: reduce) {
  .caz2-hero-shield { animation: none !important; }
}
