/*
Theme Name:   Impulso Crédito
Theme URI:    https://creditoparapensionados.com
Description:  Tema hijo para Twenty Twenty-Four — Créditos para jubilados y pensionados IMSS-Inbursa
Author:       Impulso Crédito
Author URI:   https://creditoparapensionados.com
Template:     twentytwentyfour
Version:      1.0.0
Text Domain:  impulso-credito
*/

/* ═══════════════════════════════════════════════════════════
   VARIABLES Y RESET
═══════════════════════════════════════════════════════════ */
:root {
  --ic-azul:        #1a3a6b;
  --ic-azul-med:    #2563eb;
  --ic-azul-light:  #eff6ff;
  --ic-verde:       #16a34a;
  --ic-verde-light: #dcfce7;
  --ic-amarillo:    #f59e0b;
  --ic-rojo:        #dc2626;
  --ic-gris:        #f8fafc;
  --ic-borde:       #e2e8f0;
  --ic-texto:       #1e293b;
  --ic-muted:       #64748b;
  --ic-radio:       12px;
  --ic-sombra:      0 4px 24px rgba(26,58,107,0.10);
  --ic-font:        'Inter', system-ui, -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--ic-font);
  font-size: 18px; /* Grande para adultos mayores */
  line-height: 1.7;
  color: var(--ic-texto);
  background: #fff;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--ic-azul-med); text-decoration: none; }
a:hover { text-decoration: underline; }
a:focus-visible { outline: 3px solid var(--ic-amarillo); outline-offset: 3px; border-radius: 4px; }

/* ═══════════════════════════════════════════════════════════
   TIPOGRAFÍA
═══════════════════════════════════════════════════════════ */
h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 900; line-height: 1.15; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); font-weight: 800; line-height: 1.2; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); font-weight: 700; }
h4 { font-size: 1.1rem; font-weight: 700; }
p  { font-size: 1rem; line-height: 1.7; }

.ic-color-amarillo { color: var(--ic-amarillo); }

/* ═══════════════════════════════════════════════════════════
   LAYOUT
═══════════════════════════════════════════════════════════ */
.ic-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.ic-section    { padding: 5rem 0; }
.ic-section-sm { padding: 3rem 0; }

.ic-bg-gris     { background: var(--ic-gris); }
.ic-bg-azul     { background: var(--ic-azul); }
.ic-bg-gradient { background: linear-gradient(135deg, var(--ic-azul) 0%, #1e40af 100%); }

.ic-text-center { text-align: center; }

.ic-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.ic-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

@media (max-width: 900px) {
  .ic-grid-3 { grid-template-columns: 1fr 1fr; }
  .ic-grid-4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .ic-grid-3, .ic-grid-4 { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════════════════ */
#ic-navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: white;
  border-bottom: 2px solid var(--ic-borde);
  box-shadow: 0 2px 12px rgba(26,58,107,0.08);
}

.ic-navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 70px;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.ic-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}
.ic-logo:hover { text-decoration: none; }

.ic-logo-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--ic-azul), #2563eb);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 900; font-size: 1rem;
  flex-shrink: 0;
}

.ic-logo-text strong { display: block; color: var(--ic-azul); font-size: 1rem; line-height: 1.2; }
.ic-logo-text span   { display: block; color: var(--ic-muted); font-size: 0.72rem; }

.ic-nav-links {
  display: flex;
  list-style: none;
  gap: 0.25rem;
  margin: 0;
  padding: 0;
  flex: 1;
}

.ic-nav-links a {
  padding: 0.5rem 0.85rem;
  border-radius: 8px;
  color: var(--ic-texto);
  font-weight: 600;
  font-size: 0.92rem;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.ic-nav-links a:hover { background: var(--ic-azul-light); color: var(--ic-azul); text-decoration: none; }

.ic-nav-cta { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }

.ic-hamburger {
  display: none;
  background: none; border: none; cursor: pointer;
  font-size: 1.6rem; color: var(--ic-azul);
  margin-left: auto;
  padding: 0.5rem;
}

@media (max-width: 1024px) {
  .ic-nav-links { display: none; }
  .ic-nav-cta   { display: none; }
  .ic-hamburger { display: block; }

  .ic-nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px; left: 0; right: 0;
    background: white;
    border-bottom: 2px solid var(--ic-borde);
    padding: 1rem 1.5rem;
    gap: 0.25rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    z-index: 999;
  }
  .ic-nav-links.open + .ic-nav-cta {
    display: flex;
    position: absolute;
    top: calc(70px + 2.5rem * 7 + 2rem);
    left: 1.5rem; right: 1.5rem;
  }
}

/* ═══════════════════════════════════════════════════════════
   BOTONES
═══════════════════════════════════════════════════════════ */
.ic-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border-radius: var(--ic-radio);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: transform 0.15s, box-shadow 0.15s, opacity 0.15s;
  text-decoration: none;
  white-space: nowrap;
}
.ic-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); text-decoration: none; }
.ic-btn:active { transform: translateY(0); }
.ic-btn:focus-visible { outline: 3px solid var(--ic-amarillo); outline-offset: 3px; }

.ic-btn-primary   { background: linear-gradient(135deg, var(--ic-azul), #2563eb); color: white; }
.ic-btn-secondary { background: rgba(255,255,255,0.15); color: white; border: 2px solid rgba(255,255,255,0.4); }
.ic-btn-verde     { background: var(--ic-verde); color: white; }
.ic-btn-sm        { padding: 0.55rem 1.2rem; font-size: 0.88rem; }
.ic-btn-lg        { padding: 1.1rem 2.5rem; font-size: 1.15rem; }

/* ═══════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════ */
.ic-hero {
  background: linear-gradient(135deg, var(--ic-azul) 0%, #1e40af 60%, #1d4ed8 100%);
  padding: 5rem 0;
  overflow: hidden;
}

.ic-hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.ic-hero-badge {
  display: inline-block;
  background: rgba(245,158,11,0.2);
  border: 1px solid rgba(245,158,11,0.4);
  color: #fde68a;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.ic-hero-content h1 { color: white; margin-bottom: 1.25rem; }
.ic-hero-content p  { color: rgba(255,255,255,0.85); font-size: 1.1rem; margin-bottom: 2rem; }

.ic-hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Rate card */
.ic-rate-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
}
.ic-rate-label { font-size: 0.8rem; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.5rem; }
.ic-rate-big   { font-size: 4.5rem; font-weight: 900; color: var(--ic-amarillo); line-height: 1; margin-bottom: 0.5rem; }
.ic-rate-sub   { color: rgba(255,255,255,0.8); font-size: 0.9rem; margin-bottom: 1.5rem; }
.ic-rate-items { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.ic-rate-item  {
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 0.75rem;
  text-align: left;
}
.ic-rate-item span  { display: block; font-size: 0.78rem; color: rgba(255,255,255,0.7); }
.ic-rate-item strong{ display: block; color: white; font-size: 1rem; font-weight: 800; }

@media (max-width: 900px) {
  .ic-hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .ic-rate-card { max-width: 400px; margin: 0 auto; }
}

/* ═══════════════════════════════════════════════════════════
   TARJETAS
═══════════════════════════════════════════════════════════ */
.ic-card {
  background: white;
  border: 1px solid var(--ic-borde);
  border-radius: 16px;
  padding: 1.75rem;
  box-shadow: var(--ic-sombra);
  transition: transform 0.2s, box-shadow 0.2s;
}
.ic-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(26,58,107,0.15); }

.ic-card-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.ic-card-icon.azul    { background: var(--ic-azul-light); }
.ic-card-icon.verde   { background: var(--ic-verde-light); }
.ic-card-icon.amarillo{ background: #fffbeb; }

/* ═══════════════════════════════════════════════════════════
   TABLA COMPARATIVO
═══════════════════════════════════════════════════════════ */
.ic-comparativo-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--ic-sombra);
}
.ic-comparativo-table thead th {
  background: var(--ic-azul);
  color: white;
  padding: 1rem 1.25rem;
  text-align: left;
  font-weight: 700;
}
.ic-comparativo-table tbody td {
  padding: 0.9rem 1.25rem;
  border-bottom: 1px solid var(--ic-borde);
}
.ic-comparativo-table tbody tr:last-child td { border-bottom: none; }
.ic-comparativo-table tbody tr:hover { background: var(--ic-azul-light); }
.ic-row-winner { background: #f0fdf4 !important; }
.ic-row-winner td { font-weight: 700; }
.ic-badge-mejor {
  display: inline-block;
  background: var(--ic-verde);
  color: white;
  font-size: 0.72rem;
  padding: 0.15rem 0.5rem;
  border-radius: 20px;
  margin-left: 0.5rem;
  font-weight: 700;
}

/* ═══════════════════════════════════════════════════════════
   SIMULADOR
═══════════════════════════════════════════════════════════ */
.ic-simulador-wrap {
  background: white;
  border: 1px solid var(--ic-borde);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--ic-sombra);
}

.ic-slider-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.ic-slider-label span:last-child {
  font-size: 1.3rem;
  color: var(--ic-azul);
  font-weight: 900;
}

input[type="range"] {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: var(--ic-borde);
  outline: none;
  cursor: pointer;
  margin-bottom: 0.5rem;
  accent-color: var(--ic-azul-med);
}

.ic-plazo-btns {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.ic-plazo-btn {
  padding: 0.5rem 1rem;
  border: 2px solid var(--ic-borde);
  border-radius: 8px;
  background: white;
  color: var(--ic-texto);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.15s;
}
.ic-plazo-btn:hover  { border-color: var(--ic-azul-med); color: var(--ic-azul-med); }
.ic-plazo-btn.active { background: var(--ic-azul); border-color: var(--ic-azul); color: white; }
.ic-plazo-btn.done   { background: var(--ic-verde); border-color: var(--ic-verde); color: white; }

.ic-resultado-card {
  background: linear-gradient(135deg, var(--ic-azul), #1d4ed8);
  border-radius: 20px;
  padding: 2rem;
  color: white;
}
.ic-resultado-pago { font-size: 3.5rem; font-weight: 900; color: var(--ic-amarillo); line-height: 1; margin-bottom: 0.5rem; }
.ic-resultado-ahorro {
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 1rem;
  text-align: center;
}

/* ═══════════════════════════════════════════════════════════
   FORMULARIOS
═══════════════════════════════════════════════════════════ */
.ic-form-group { margin-bottom: 1.25rem; }
.ic-form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  color: var(--ic-texto);
}
.ic-form-group input,
.ic-form-group select,
.ic-form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 2px solid var(--ic-borde);
  border-radius: var(--ic-radio);
  font-size: 1rem;
  font-family: var(--ic-font);
  color: var(--ic-texto);
  background: white;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.ic-form-group input:focus,
.ic-form-group select:focus,
.ic-form-group textarea:focus {
  outline: none;
  border-color: var(--ic-azul-med);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.15);
}
.ic-form-group input:invalid:not(:placeholder-shown) { border-color: var(--ic-rojo); }

.ic-form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 600px) { .ic-form-grid-2 { grid-template-columns: 1fr; } }

/* Pasos del formulario */
.ic-form-steps {
  display: flex;
  gap: 0;
  margin-bottom: 2rem;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--ic-borde);
}
.ic-form-step {
  flex: 1;
  padding: 0.75rem 0.5rem;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ic-muted);
  background: white;
  border-right: 1px solid var(--ic-borde);
  transition: all 0.2s;
}
.ic-form-step:last-child { border-right: none; }
.ic-form-step.active { background: var(--ic-azul); color: white; }
.ic-form-step.done   { background: var(--ic-verde-light); color: var(--ic-verde); }

/* Checkbox de documentos */
.ic-doc-check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border: 2px solid var(--ic-borde);
  border-radius: 10px;
  cursor: pointer;
  margin-bottom: 0.75rem;
  transition: border-color 0.15s, background 0.15s;
  font-size: 0.95rem;
  font-weight: 500;
}
.ic-doc-check:hover { border-color: var(--ic-azul-med); background: var(--ic-azul-light); }
.ic-doc-check input[type="checkbox"] { width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; accent-color: var(--ic-azul); cursor: pointer; }

/* ═══════════════════════════════════════════════════════════
   FAQ
═══════════════════════════════════════════════════════════ */
.ic-faq-item {
  border: 1px solid var(--ic-borde);
  border-radius: 12px;
  margin-bottom: 0.75rem;
  overflow: hidden;
  background: white;
}
.ic-faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  text-align: left;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ic-texto);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: background 0.15s;
  font-family: var(--ic-font);
}
.ic-faq-question:hover { background: var(--ic-azul-light); }
.ic-faq-question.open  { background: var(--ic-azul); color: white; }
.ic-faq-icon { font-size: 1.5rem; font-weight: 400; flex-shrink: 0; transition: transform 0.2s; }
.ic-faq-question.open .ic-faq-icon { transform: rotate(45deg); }
.ic-faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.5rem;
  color: var(--ic-muted);
  font-size: 0.97rem;
  line-height: 1.7;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.ic-faq-answer.open { max-height: 500px; padding: 1.25rem 1.5rem; }

/* ═══════════════════════════════════════════════════════════
   SUBDELEGACIONES
═══════════════════════════════════════════════════════════ */
.ic-subdel-card {
  background: white;
  border: 1px solid var(--ic-borde);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: var(--ic-sombra);
  transition: transform 0.2s;
}
.ic-subdel-card:hover { transform: translateY(-4px); }
.ic-subdel-num {
  width: 40px; height: 40px;
  background: var(--ic-azul);
  color: white;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 1.1rem;
  margin-bottom: 0.75rem;
}
.ic-subdel-card h4 { font-size: 1rem; color: var(--ic-azul); margin-bottom: 0.5rem; }
.ic-subdel-card p  { font-size: 0.88rem; color: var(--ic-muted); margin-bottom: 0.25rem; }
.ic-subdel-horario { color: var(--ic-verde) !important; font-weight: 600 !important; }

/* ═══════════════════════════════════════════════════════════
   SEGUIMIENTO — TIMELINE
═══════════════════════════════════════════════════════════ */
.ic-status-timeline { position: relative; padding-left: 2rem; }
.ic-timeline-item {
  position: relative;
  padding-bottom: 1.25rem;
  padding-left: 0.5rem;
}
.ic-timeline-item:last-child { padding-bottom: 0; }
.ic-timeline-dot {
  position: absolute;
  left: -1.75rem;
  top: 0.25rem;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--ic-borde);
}
.ic-timeline-dot.done   { background: var(--ic-verde); }
.ic-timeline-dot.active { background: var(--ic-azul-med); box-shadow: 0 0 0 4px rgba(37,99,235,0.2); }

/* Badges de estatus */
.ic-badge {
  display: inline-block;
  padding: 0.3rem 0.9rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
}
.ic-badge-recibida              { background: #dbeafe; color: #1e40af; }
.ic-badge-en_revision           { background: #fef3c7; color: #92400e; }
.ic-badge-docs_pendientes       { background: #ffedd5; color: #c2410c; }
.ic-badge-aprobada              { background: #dcfce7; color: #15803d; }
.ic-badge-dispersada            { background: #d1fae5; color: #065f46; }
.ic-badge-rechazada             { background: #fee2e2; color: #991b1b; }

/* ═══════════════════════════════════════════════════════════
   WHATSAPP FLOTANTE
═══════════════════════════════════════════════════════════ */
.ic-whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
}
.ic-whatsapp-btn {
  width: 64px; height: 64px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.ic-whatsapp-btn:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,0.5); }
.ic-whatsapp-btn svg { width: 36px; height: 36px; fill: white; }
.ic-whatsapp-tooltip {
  position: absolute;
  right: 74px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--ic-azul);
  color: white;
  padding: 0.4rem 0.9rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.ic-whatsapp-float:hover .ic-whatsapp-tooltip { opacity: 1; }
.ic-whatsapp-tooltip::after {
  content: '';
  position: absolute;
  right: -6px; top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right: none;
  border-left-color: var(--ic-azul);
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
#ic-footer {
  background: var(--ic-azul);
  color: rgba(255,255,255,0.8);
  padding: 3.5rem 0 1.5rem;
}
.ic-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.ic-footer-grid h4 { color: white; font-size: 0.95rem; margin-bottom: 0.75rem; }
.ic-footer-grid a  { display: block; color: rgba(255,255,255,0.7); font-size: 0.9rem; margin-bottom: 0.4rem; }
.ic-footer-grid a:hover { color: white; }
.ic-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 1.25rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}
@media (max-width: 900px) {
  .ic-footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .ic-footer-grid { grid-template-columns: 1fr; }
  .ic-footer-bottom { flex-direction: column; text-align: center; }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE GENERAL
═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  body { font-size: 17px; }
  .ic-section { padding: 3.5rem 0; }
  .ic-hero-btns { flex-direction: column; }
  .ic-hero-btns .ic-btn { width: 100%; justify-content: center; }
  .ic-form-steps { flex-wrap: wrap; }
  .ic-form-step  { flex: 1 1 45%; font-size: 0.75rem; }
}

@media (max-width: 480px) {
  .ic-rate-big { font-size: 3.5rem; }
  .ic-resultado-pago { font-size: 2.5rem; }
  .ic-whatsapp-float { bottom: 1rem; right: 1rem; }
  .ic-whatsapp-btn { width: 56px; height: 56px; }
}

/* ═══════════════════════════════════════════════════════════
   ACCESIBILIDAD — FOCO VISIBLE
═══════════════════════════════════════════════════════════ */
:focus-visible {
  outline: 3px solid var(--ic-amarillo);
  outline-offset: 3px;
}
.ic-btn:focus-visible,
.ic-faq-question:focus-visible,
.ic-plazo-btn:focus-visible {
  outline: 3px solid var(--ic-amarillo);
  outline-offset: 3px;
}

/* Saltar al contenido (accesibilidad) */
.ic-skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--ic-azul);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0 0 8px 8px;
  font-weight: 700;
  z-index: 9999;
  transition: top 0.2s;
}
.ic-skip-link:focus { top: 0; }
