.elementor-67328 .elementor-element.elementor-element-3d0e8c7{--display:flex;}.elementor-67328 .elementor-element.elementor-element-5c8a570{--display:flex;}/* Start custom CSS for html, class: .elementor-element-35a5273 */:root {
    --navy: #0b3a67;
    --blue: #0056b3;
    --accent: #0ea5e9;
    --orange: #f39c12;
    --red: #c0392b;
    --red-light: #fdf2f0;
    --navy-light: #e8f0f8;
    --blue-light: #dbeafe;
    --accent-light: #e0f2fe;
    --orange-light: #fef3e2;
    --text-dark: #1a2332;
    --text-mid: #4a5568;
    --text-light: #718096;
    --border: #e2e8f0;
    --white: #ffffff;
    --bg: #f8fafc;
  }
  * { margin: 0; padding: 0; box-sizing: border-box; }
  body {
    font-family: 'DM Sans', sans-serif;
    font-size: 17px;
    line-height: 1.75;
    color: var(--text-dark);
    background: var(--bg);
  }
  .article-wrap {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 24px 80px;
  }

  /* HERO */
  .article-hero {
    background: linear-gradient(135deg, var(--blue) 0%, var(--accent) 50%, #e0f2fe 130%);
    padding: 40px 32px;
    border-radius: 16px;
    color: var(--white);
    margin-bottom: 40px;
  }
  .article-hero__label {
    margin: 0 0 10px;
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: rgba(255,255,255,0.2);
    padding: 4px 12px;
    border-radius: 4px;
    opacity: 0.95;
  }
  .article-hero h1 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(28px, 5vw, 38px);
    font-weight: 400;
    line-height: 1.15;
    color: var(--white) !important;
    margin: 0 0 14px;
    max-width: 640px;
  }
  .article-hero__subtitle {
    margin: 0;
    font-size: 17px;
    line-height: 1.6;
    opacity: 0.92;
    color: var(--white) !important;
    max-width: 600px;
  }
  .article-hero__meta {
    margin-top: 20px;
    font-size: 13px;
    opacity: 0.7;
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
  }
  .article-hero__meta .sep {
    width: 4px; height: 4px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    display: inline-block;
  }
  @media (max-width: 600px) {
    .article-hero { padding: 28px 20px; }
  }

  /* TYPOGRAPHY */
  h2 {
    font-family: 'DM Serif Display', serif;
    font-size: 26px;
    font-weight: 400;
    color: var(--navy);
    margin: 52px 0 16px;
    line-height: 1.25;
  }
  h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 19px;
    font-weight: 500;
    color: var(--navy);
    margin: 32px 0 12px;
    line-height: 1.3;
  }
  p { margin-bottom: 20px; color: var(--text-dark); }
  p:last-child { margin-bottom: 0; }

  .section-divider {
    height: 1px;
    background: var(--border);
    margin: 48px 0;
  }

  /* FEATURES GRID */
  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin: 24px 0 12px;
  }
  .feature-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 22px 20px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.2s;
  }
  .feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
  }
  .feature-card.c-blue::before   { background: var(--blue); }
  .feature-card.c-accent::before { background: var(--accent); }
  .feature-card.c-orange::before { background: var(--orange); }
  .feature-card.c-navy::before   { background: var(--navy); }
  .feature-card.c-red::before    { background: var(--red); }
  .feature-card:hover { border-color: #b0c4d8; }
  .feature-icon { font-size: 22px; margin-bottom: 12px; display: block; }
  .feature-card h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--navy);
    margin: 0 0 8px;
    letter-spacing: 0;
    text-transform: none;
  }
  .feature-card p {
    font-size: 14px;
    line-height: 1.55;
    color: var(--text-mid);
    margin: 0;
  }

  /* INCLUDES CHECKLIST */
  .includes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
    margin: 24px 0 8px;
  }
  .include-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 14px 16px;
  }
  .include-check {
    width: 18px; height: 18px;
    border-radius: 50%;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
  }
  .include-check::after {
    content: '';
    width: 9px; height: 5px;
    border-left: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(-45deg) translateY(-1px);
    display: block;
  }
  .include-item p {
    font-size: 14px;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.4;
  }

  /* TRIAL CALLOUT */
  .trial-callout {
    background: var(--accent-light);
    border-left: 4px solid var(--accent);
    border-radius: 0 8px 8px 0;
    padding: 20px 24px;
    margin: 28px 0;
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .trial-callout .trial-icon {
    font-size: 28px;
    flex-shrink: 0;
  }
  .trial-callout p {
    font-size: 15px;
    color: #0369a1;
    margin: 0;
  }
  .trial-callout strong {
    color: var(--navy);
  }

  /* USE CASES */
  .use-cases {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 12px;
    margin: 24px 0 36px;
  }
  .use-case-item {
    background: var(--navy-light);
    border-radius: 8px;
    padding: 16px 18px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
  }
  .use-case-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--accent);
    margin-top: 7px;
    flex-shrink: 0;
  }
  .use-case-item p {
    font-size: 14px;
    font-weight: 500;
    color: var(--navy);
    margin: 0;
    line-height: 1.4;
  }
  .use-case-item span {
    font-size: 13px;
    font-weight: 400;
    color: var(--text-mid);
    display: block;
    margin-top: 2px;
  }

  /* CALLOUT DANGER */
  .callout-danger {
    background: var(--red-light);
    border-left: 4px solid var(--red);
    border-radius: 0 8px 8px 0;
    padding: 24px 28px;
    margin: 36px 0;
  }
  .callout-danger .callout-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .callout-danger .callout-label::before {
    content: '';
    display: inline-block;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--red);
  }
  .callout-danger p {
    font-size: 16px;
    color: #5c1a14;
    margin-bottom: 12px;
  }
  .callout-danger p:last-child { margin-bottom: 0; }


  /* MOMENTS GRID */
  .moments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
    margin: 24px 0 28px;
  }
  .moment-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 20px 18px;
    position: relative;
    overflow: hidden;
  }
  .moment-time {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 10px;
  }
  .moment-icon {
    font-size: 24px;
    display: block;
    margin-bottom: 10px;
  }
  .moment-card h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--navy);
    margin: 0 0 8px;
    letter-spacing: 0;
    text-transform: none;
  }
  .moment-card p {
    font-size: 13px;
    line-height: 1.55;
    color: var(--text-mid);
    margin: 0;
  }
  .moment-card:nth-child(1) { border-top: 3px solid var(--orange); }
  .moment-card:nth-child(2) { border-top: 3px solid var(--blue); }
  .moment-card:nth-child(3) { border-top: 3px solid var(--accent); }
  .moment-card:nth-child(4) { border-top: 3px solid var(--navy); }
  .moment-card:nth-child(5) { border-top: 3px solid var(--red); }

  /* STAT STRIP */
  .stat-strip {
    background: var(--navy);
    border-radius: 12px;
    padding: 32px 28px;
    margin: 40px 0 12px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 24px;
  }
  .stat-item { text-align: center; }
  .stat-number {
    font-family: 'DM Serif Display', serif;
    font-size: 34px;
    color: var(--accent);
    line-height: 1;
    display: block;
    margin-bottom: 6px;
  }
  .stat-label {
    font-size: 13px;
    color: rgba(255,255,255,0.65);
    line-height: 1.4;
  }
  .stat-disclaimer {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 36px;
  }

  /* CTA FINAL */
  .cta-block {
    background: var(--navy);
    border-radius: 12px;
    padding: 40px 36px;
    margin-top: 56px;
    text-align: center;
  }
  .cta-block h2 {
    font-family: 'DM Serif Display', serif;
    font-size: 26px;
    color: var(--white);
    margin: 0 0 12px;
  }
  .cta-block p {
    font-size: 16px;
    color: rgba(255,255,255,0.72);
    margin-bottom: 28px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
  .cta-btn {
    display: inline-block;
    background: #ffffff !important;
    color: var(--navy) !important;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 500;
    padding: 13px 32px;
    border-radius: 6px;
    border: 2px solid #ffffff !important;
    text-decoration: none !important;
    transition: background 0.2s, color 0.2s;
  }
  .cta-btn:hover { background: transparent !important; color: #ffffff !important; }
  .cta-note {
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    margin-top: 14px;
    margin-bottom: 0;
  }


  @media (max-width: 600px) {
    h1 { font-size: 26px; }
    .stat-strip { gap: 20px; }
    .cta-block { padding: 28px 20px; }
    .trial-callout { flex-direction: column; gap: 10px; }
  }
  /* MARKETPLACE NOTE */
  .marketplace-note {
    font-size: 15px;
    color: var(--text-mid);
    background: var(--navy-light);
    border-radius: 8px;
    padding: 16px 20px;
    margin: 28px 0 0;
  }
  .marketplace-note a {
    color: var(--blue);
    font-weight: 500;
    text-decoration: none;
  }
  .marketplace-note a:hover {
    text-decoration: underline;
  }

  /* RELATED ARTICLE */
  .related-wrap {
    margin: 40px 0 32px;
  }
  .related-heading {
    display: block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 14px;
  }
  .related-card {
    display: flex;
    gap: 20px;
    align-items: center;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 16px;
    text-decoration: none;
    transition: border-color 0.2s, box-shadow 0.2s;
  }
  .related-card:hover {
    border-color: var(--accent);
    box-shadow: 0 4px 16px rgba(14, 165, 233, 0.1);
  }
  .related-card-img {
    width: 100px;
    height: 72px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--navy-light);
  }
  .related-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .related-card-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .related-card-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
  }
  .related-card-title {
    font-size: 15px;
    font-weight: 500;
    color: var(--navy);
    line-height: 1.35;
  }
  .related-card-cta {
    font-size: 13px;
    color: var(--blue);
    margin-top: 4px;
  }

  @media (max-width: 480px) {
    .related-card { flex-direction: column; }
    .related-card-img { width: 100%; height: 160px; }
  }

  /* ===== AÑADIDO: figura de imagen para capturas de producto ===== */
  /* (No estaba en tu CSS base. Estilo consistente con el sistema.) */
  .fn-figure {
    margin: 8px 0 28px;
  }
  .fn-figure .fn-img {
    width: 100%;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: var(--navy-light);
    display: block;
    aspect-ratio: 5 / 3;
    object-fit: cover;
  }
  /* Vertical: self check-in (400×600) */
  .fn-figure--vertical {
    max-width: 320px;
  }
  .fn-figure--vertical .fn-img {
    aspect-ratio: 2 / 3;
  }
  .fn-figure figcaption {
    font-size: 13px;
    color: var(--text-light);
    margin-top: 8px;
    text-align: center;
  }/* End custom CSS */