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

  :root {
    --navy:       #0b1f3a;
    --navy-dark:  #07152a;
    --blue:       #1a4fd6;
    --blue-mid:   #1e6bdc;
    --cyan:       #1ab9d4;
    --cyan-light: #2ed4f0;
    --orange:     #f97316;
    --white:      #ffffff;
    --gray:       #8ba4c0;
    --gray-light: #c8d8ea;
    --border:     rgba(255,255,255,0.1);
    --font:       'Montserrat', sans-serif;
    --font-body:  'Montserrat', sans-serif;
  }

  html { scroll-behavior: smooth; }
  body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--white);
    background: var(--navy-dark);
    overflow-x: hidden;
  }

  /* ─── NAV ─── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 200;
    display: flex; align-items: center; justify-content: space-between;flex-wrap: wrap;
    padding: 12px 48px;
    background: rgba(7,21,42,0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
  }
  .nav-logo img { height: 36px; }
  .nav-cta {
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    color: #fff; font-family: var(--font); font-weight: 800;
    font-size: 0.78rem; padding: 10px 22px; border-radius: 50px;
    border: none; cursor: pointer; text-decoration: none;
    letter-spacing: 0.6px; text-transform: uppercase;
    transition: transform .2s, box-shadow .2s;
    box-shadow: 0 4px 16px rgba(26,111,220,0.4);
  }
  .nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,111,220,0.55); }

  /* ─── HERO ─── */
  .hero {
    min-height: 100vh;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center; padding: 130px 24px 80px;
    position: relative; overflow: hidden;
    background: var(--navy-dark);
  }
  .hero-bg {
    position: absolute; inset: 0;
    background-image: url('/src/img/img-06.png');
    background-size: cover; background-position: top left;
  }
  .hero-bg::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(7,21,42,0.55) 0%, rgba(7,21,42,0.88) 100%);
  }
  .hero-content { position: relative; z-index: 1; max-width: 820px; margin: 0 auto; }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(26,185,212,0.12); border: 6px solid rgba(26,185,212,0.3);
    border-radius: 50px; padding: 6px 20px; font-size: clamp(0.8rem,1.4rem, 1.8rem);
    color: var(--cyan-light); font-weight: 700; margin-bottom: 28px;
    letter-spacing: 0.5px; font-family: var(--font);
  }
  .hero-badge .dot { width: 7px; height: 7px; background: var(--cyan); border-radius: 50%; animation: blink 1.5s infinite; flex-shrink: 0; }
  @keyframes blink { 0%,100%{opacity:1} 50%{opacity:.2} }

  .hero h1 {
    font-family: var(--font); font-weight: 900;
    font-size: clamp(2rem, 5vw, 4rem);
    line-height: 1.1; letter-spacing: -1px; margin-bottom: 22px; color: #fff;
  }
  .hero h1 .big {
    display: block; font-size: clamp(2.8rem, 7vw, 5.6rem);
    background: linear-gradient(90deg, var(--cyan-light), #fff 70%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    letter-spacing: -2px; line-height: 1.0;
  }
  .hero p { font-size: 1.05rem; color: var(--gray-light); max-width: 500px; margin: 0 auto 38px; }
  .hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

  .btn-primary {
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    color: #fff; font-family: var(--font); font-weight: 800;
    font-size: 0.92rem; padding: 15px 34px; border-radius: 50px;
    border: none; cursor: pointer; text-decoration: none;
    transition: transform .2s, box-shadow .2s;
    box-shadow: 0 4px 20px rgba(26,111,220,0.45);
    display: inline-block;
  }
  .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(26,111,220,0.6); }
  .btn-ghost {
    background: transparent; border: 2px solid rgba(255,255,255,0.25);
    color: var(--white); font-family: var(--font); font-weight: 700;
    font-size: 0.92rem; padding: 13px 32px; border-radius: 50px;
    cursor: pointer; text-decoration: none; transition: border-color .2s, color .2s;
    display: inline-block;
  }
  .btn-ghost:hover { border-color: var(--cyan); color: var(--cyan); }

  /* ─── STATS BAR ─── */
  .stats-bar {
    display: flex; flex-wrap: wrap;
    background: linear-gradient(90deg, #1040b8 0%, var(--blue-mid) 50%, #0e8aaa 100%);
  }
  .stat {
    flex: 1; min-width: 140px; padding: 28px 16px; text-align: center;
    border-right: 1px solid rgba(255,255,255,0.18);
  }
  .stat:last-child { border-right: none; }
  .stat-num { display: block; font-family: var(--font); font-size: 2.2rem; font-weight: 900; color: #fff; line-height: 1; }
  .stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.82); margin-top: 5px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }

  /* ─── SECTION BASE ─── */
  section { padding: 90px 24px; }
  .container { max-width: 1080px; margin: 0 auto; }
  .pill {
    display: inline-block; font-family: var(--font); font-size: 0.72rem; font-weight: 800;
    text-transform: uppercase; letter-spacing: 2px;
    padding: 5px 16px; border-radius: 50px; margin-bottom: 18px;
  }
  .pill-cyan { background: rgba(26,185,212,0.15); color: var(--cyan-light); border: 1px solid rgba(26,185,212,0.3); }
  .pill-orange { background: rgba(249,115,22,0.15); color: #ffa55a; border: 1px solid rgba(249,115,22,0.35); }
  .pill-blue { background: rgba(26,79,214,0.08); color: var(--blue); border: 1px solid rgba(26,79,214,0.25); }

  h2.sh {
    font-family: var(--font); font-weight: 900;
    font-size: clamp(1.7rem, 3.5vw, 2.8rem);
    line-height: 1.1; letter-spacing: -1px; margin-bottom: 16px;
  }
  .sub { color: var(--gray-light); font-size: 0.98rem; font-weight: 400; max-width: 500px; }

  /* ─── EFFICHAT ─── */
  .sec-effichat {
    background: linear-gradient(135deg, var(--navy-dark) 0%, #0d2a52 100%);
    position: relative; overflow: hidden;
  }
  .effichat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
  .robot-wrap { display: flex; justify-content: center; align-items: flex-end; }
  .robot-wrap img { width: 100%; max-width: 380px; filter: drop-shadow(0 20px 40px rgba(26,185,212,0.2)); }
  .effichat-text h2 em { font-style: normal; color: var(--cyan-light); }
    .discount-banner {
        display: flex;
        align-items: center;
        gap: 12px;
        background: rgba(249, 115, 22, 0.1);
        border: 1px solid rgba(249, 115, 22, 0.3);
        border-radius: 14px;
        padding: 16px 20px;
        margin: 28px 5% 32px;
        font-size: 0.88rem;
        color: rgba(255, 255, 255, 0.88);
        line-height: 1.5;
        justify-content: center;
        flex-wrap: nowrap;
        flex-direction: row;
    }
    .discount-banner .btn-primary {
        text-align: center;
        min-width: 260px;
    }
  .discount-banner strong { color: var(--orange); }

  /* ─── DEVOLUCIONES CTA ─── */
  .sec-devoluciones {
    position: relative; overflow: hidden; text-align: center;
    background: linear-gradient(135deg, #0b3068 0%, var(--blue) 50%, #0d9ab5 100%);
    background: url(/src/img/img-07.png);background-size: cover;
    background-attachment: fixed;
  }
  .dev-icon { margin: 0 auto 28px; display: block; width: 90px; }

  /* ─── PROBLEMA ─── */
  .sec-problema { position: relative; overflow: hidden; background: var(--navy-dark); }
  .problema-bg {
    position: absolute; inset: 0;
    background-image: url('/src/img/img-08.png');
    background-size: cover; background-position: center;opacity: 0.4;
    background-attachment: fixed;
  }
  .problema-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; position: relative; z-index: 1; }
  .prob-points { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
  .prob-point {
    display: flex; gap: 14px; align-items: flex-start;
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px; padding: 18px 20px;
  }
  .prob-icon { font-size: 1.3rem; flex-shrink: 0; }
  .prob-text { font-size: 0.9rem; color: var(--gray-light); }
  .prob-stats { display: flex; flex-direction: row;flex-wrap: wrap; gap: 18px; }
  .pstat {
    background: linear-gradient(135deg, rgba(26,79,214,0.15), rgba(26,185,212,0.08));
    border: 1px solid rgba(26,185,212,0.18); border-radius: 18px;
    padding: 26px 28px; text-align: center;
  }
  .pstat.full,.pstat-resolve.full{width: 100%;}
  .pstat.mid{width: 48%;}
  .pstat-num {
    display: block; font-family: var(--font); font-size: 3rem; font-weight: 900;
    background: linear-gradient(135deg, var(--cyan-light), #7eb3ff);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; line-height: 1;
  }
  .pstat-label { font-size: 0.82rem; color: var(--gray-light); margin-top: 6px; }
  .pstat-resolve {
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    border-radius: 18px; padding: 24px 28px; text-align: center;
  }
  .pstat-resolve strong { font-family: var(--font); font-size: 1.05rem; font-weight: 900; display: block; }
  .pstat-resolve span { font-size: 0.82rem; display: block; margin-top: 4px; color: rgba(255,255,255,0.8); }

  /* ─── SOLUCIÓN (light) ─── */
  .sec-solucion { background: #f0f6ff; color: var(--navy); }
  .sec-solucion .sh { color: var(--navy); }
  .sec-solucion .sub { color: #4a6fa5; }
  .sol-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin: 32px 0 28px; }
  .sol-tab {
    padding: 9px 22px; border-radius: 50px; font-family: var(--font); font-size: 0.82rem; font-weight: 700;
    cursor: pointer; border: 2px solid #c8d8ea; color: #4a6fa5;
    background: transparent; transition: all .2s;
  }
  .sol-tab.active, .sol-tab:hover { background: var(--blue); border-color: var(--blue); color: #fff; }
  .feat-wrap { background: #fff; border: 1px solid #dce8f5; border-radius: 20px; overflow: hidden; box-shadow: 0 4px 24px rgba(11,31,58,0.07); }
  .feat-table { width: 100%; border-collapse: collapse; }
  .feat-table th {
    font-family: var(--font); font-size: 0.75rem; font-weight: 800;
    text-transform: uppercase; letter-spacing: 1.5px; color: #8ba4c0;
    padding: 14px 18px; text-align: left; border-bottom: 2px solid #dce8f5;
  }
  .feat-table td { padding: 16px 18px; border-bottom: 1px solid #e4eef8; font-size: 0.9rem; vertical-align: middle; }
  .feat-table tr:last-child td { border-bottom: none; }
  .feat-table tr:hover td { background: rgba(26,79,214,0.03); }
  .fname { font-weight: 800; color: var(--navy); font-family: var(--font); }
  .fop { color: #4a6fa5; }
  .fbenefit { color: var(--blue); font-weight: 700; }
  .sol-note {
    margin-top: 20px; padding: 18px 22px;
    background: rgba(26,185,212,0.07); border: 1px solid rgba(26,185,212,0.22);
    border-radius: 14px; font-size: 0.87rem; color: #2a5080; line-height: 1.6;
  }
  .sol-note strong { color: var(--blue); }

  /* ─── PLANES ─── */
  .sec-planes { position: relative; overflow: hidden; background: var(--navy-dark); }
  .planes-bg {
    position: absolute; inset: 0;
    background-image: url('/src/img/img-07.png');
    background-size: cover; background-position: top center; opacity: 0.06;
  }
  .planes-top { display: flex; align-items: flex-start; gap: 40px; margin-bottom: 48px; position: relative; z-index: 1; }
  .planes-top-text { flex: 1; }
  .planes-top-img { flex-shrink: 0; width: 150px; }
  .planes-top-img img { width: 100%; }
  .planes-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; position: relative; z-index: 1; }
  .plan-card {
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
    border-radius: 22px; padding: 34px 26px; position: relative;
    transition: transform .3s, box-shadow .3s;
  }
  .plan-card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(0,0,0,0.4); }
  .plan-card.featured {
    background: linear-gradient(145deg, rgba(26,79,214,0.22), rgba(26,185,212,0.12));
    border-color: rgba(26,111,220,0.5);
  }
  .plan-popular {
    position: absolute; top: 18px; right: 18px;
    background: linear-gradient(135deg, var(--orange), #fb923c);
    color: #fff; font-family: var(--font); font-size: 0.68rem; font-weight: 800;
    padding: 4px 12px; border-radius: 50px; text-transform: uppercase; letter-spacing: 0.5px;
  }
  .plan-name { font-family: var(--font); font-size: 1.05rem; font-weight: 800; margin-bottom: 6px; }
  .plan-price { font-family: var(--font); font-size: 2.6rem; font-weight: 900; line-height: 1; margin: 14px 0 4px; }
  .plan-price sup { font-size: 1.1rem; vertical-align: super; font-weight: 700; }
  .plan-price sub { font-size: 0.9rem; vertical-align: baseline; color: var(--gray); font-weight: 400; }
  .plan-desc { font-size: 0.8rem; color: var(--gray); margin-bottom: 22px; }
  .plan-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 26px; }
  .plan-features li { display: flex; gap: 9px; font-size: 0.87rem; color: var(--gray-light); align-items: flex-start; }
  .plan-features li::before { content: '✓'; color: var(--cyan); font-weight: 900; flex-shrink: 0; font-family: var(--font); }
  .btn-plan {
    width: 100%; padding: 13px; border-radius: 12px; font-family: var(--font);
    font-weight: 800; font-size: 0.88rem; cursor: pointer; border: none;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    color: #fff; transition: opacity .2s, transform .2s;
  }
  .btn-plan:hover { opacity: 0.88; transform: scale(1.02); }
  .planes-note { position: relative; z-index:1; margin-top: 28px; text-align: center; font-size: 0.85rem; color: var(--gray); }

  /* ─── INTEGRACIONES (light) ─── */
  .sec-integra {
    background: #f0f6ff; color: var(--navy); text-align: center;
    position: relative; overflow: hidden;
  }
  .integra-bg {
    position: absolute; inset: 0;
    background-image: url('img-08b.png');
    background-size: cover; opacity: 0.06;
  }
  .sec-integra .sh { color: var(--navy); }
  .sec-integra .sub { color: #4a6fa5; margin: 0 auto; }
  .logos-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 36px; position: relative; z-index: 1; }
  .logo-chip {
    background: #fff; border: 1.5px solid #c8d8ea;
    border-radius: 10px; padding: 12px 26px;
    font-family: var(--font); font-size: 0.88rem; font-weight: 700; color: #2a5080;
    transition: border-color .2s, color .2s, box-shadow .2s;
  }
  .logo-chip:hover { border-color: var(--blue); color: var(--blue); box-shadow: 0 4px 12px rgba(26,79,214,0.12); }
  .integra-cta { margin-top: 48px; position: relative; z-index: 1; }
  .integra-num { font-family: var(--font); font-size: clamp(2rem,5vw,4rem); font-weight: 900; color: var(--blue); line-height: 1; display: block; margin-bottom: 6px; }
  .integra-sub { font-size: 1rem; color: #2a5080; font-weight: 500; }

  /* ─── FAQ ─── */
  .sec-faq { background: var(--navy-dark); }
  .faq-list { display: flex; flex-direction: column; gap: 10px; margin-top: 40px; }
  .faq-item {
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px; overflow: hidden;
  }
  .faq-q {
    width: 100%; background: none; border: none; color: #fff;
    font-family: var(--font-body); font-size: 0.95rem; font-weight: 600;
    text-align: left; padding: 20px 22px; cursor: pointer;
    display: flex; justify-content: space-between; align-items: center; gap: 12px;
  }
  .faq-q .arr { flex-shrink: 0; color: var(--cyan); font-size: 1.1rem; transition: transform .3s; }
  .faq-item.open .arr { transform: rotate(180deg); }
  .faq-a { display: none; padding: 0 22px 20px; font-size: 0.9rem; color: var(--gray-light); line-height: 1.75; }
  .faq-item.open .faq-a { display: block; }

  /* ─── FINAL CTA ─── */
  .sec-final {
    text-align: center; padding: 110px 24px;
    background: linear-gradient(145deg, #07152a 0%, #0d2a52 50%, #07152a 100%);
    position: relative; overflow: hidden;
  }
  .sec-final::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 70% 60% at 50% 100%, rgba(26,79,214,0.25), transparent 70%);
  }
  .sec-final .content { position: relative; z-index: 1; }
  .sec-final h2 {
    font-family: var(--font); font-weight: 900;
    font-size: clamp(2rem, 5vw, 4rem);
    letter-spacing: -2px; line-height: 1.05; margin-bottom: 14px;
  }
  .sec-final h2 .grad {
    background: linear-gradient(90deg, var(--cyan-light), var(--orange));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  }
  .sec-final p { color: var(--gray-light); margin-bottom: 42px; font-size: 1rem; }

  /* ─── FOOTER ─── */
  footer {
    background: #040d1c; border-top: 1px solid rgba(255,255,255,0.07);
    padding: 28px 48px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px;
  }
  footer img { height: 30px; }
  .footer-copy { font-size: 0.78rem; color: var(--gray); }
    .footer-links {
    display: flex;
    gap: 1.5rem;
  }

  .footer-links a {
    font-size: 0.82rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
  }

  .footer-links a:hover { color: var(--effi-accent); }
  
  
  
  /* CSS TERMINOS PAGE*/
  #terminos{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
  }
  #terminos>div {
    background: white;
    border-radius: 8px;
    color: black;
    padding: 10px 25px;
    margin: 10px;
    width: 38%;
    min-width: 280px;
  }
  
  
  /* carusell logos */
      :root {
      --bg:        #0a0a0a;
      --track-bg:  #eef4fe;
      --border:    rgba(255,255,255,0.07);
      --logo-h:    48px;
      --gap:       64px;
    }
 
    .carousel-section {
      width: 100%;
      padding: 60px 0;
      display: flex;
      flex-direction: column;
    }
 
    .carousel-label {
      text-align: center;
      font-size: 11px;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.3);
      font-family: sans-serif;
      margin-bottom: 36px;
    }
 
    /* ── Fila envolvente ── */
    .carousel-row {
      position: relative;
      overflow: hidden;
      width: 100%;
      background: var(--track-bg);
      padding: 24px 0;
      border-top: 1px solid var(--border);
    }
    .carousel-row:last-child {
      border-bottom: 1px solid var(--border);
    }
 
    /* Fades laterales */
    .carousel-row::before,
    .carousel-row::after {
      content: "";
      position: absolute;
      top: 0; bottom: 0;
      width: 140px;
      z-index: 2;
      pointer-events: none;
    }
    .carousel-row::before {
      left: 0;
      background: linear-gradient(to right, var(--track-bg), transparent);
    }
    .carousel-row::after {
      right: 0;
      background: linear-gradient(to left, var(--track-bg), transparent);
    }
 
    /* ── Cinta ── */
    .carousel-track {
      display: flex;
      align-items: center;
      gap: var(--gap);
      width: max-content;
    }
 
    .carousel-row:hover .carousel-track {
      animation-play-state: paused;
    }
 
    /* Izquierda */
    .carousel-track.ltr {
      animation: slide-ltr var(--row-speed, 30s) linear infinite;
    }
    /* Derecha */
    .carousel-track.rtl {
      animation: slide-rtl var(--row-speed, 30s) linear infinite;
    }
 
    @keyframes slide-ltr {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }
    @keyframes slide-rtl {
      from { transform: translateX(-50%); }
      to   { transform: translateX(0); }
    }
 
    /* ══ VELOCIDADES POR FILA — cambia estos valores ══ */
    .row-1 { --row-speed: 30s; }
    .row-2 { --row-speed: 45s; }
    .row-3 { --row-speed: 20s; }
    /* Para agregar más filas: .row-4 { --row-speed: 35s; } */
 
    /* ── Logos ── */
    .logo-item {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
 
    .logo-item img {
      height: var(--logo-h);
      width: auto;
      max-width: 160px;
      object-fit: contain;
      filter: grayscale(1) brightness(0.65);
      transition: filter 0.4s ease, transform 0.3s ease;
      display: block;
    }
 
    .logo-item img:hover {
      filter: grayscale(0) brightness(1);
      transform: scale(1.1);
    }
 
    .logo-sep {
      width: 4px;
      height: 4px;
      border-radius: 50%;
      background: rgba(255,255,255,0.12);
      flex-shrink: 0;
    }
 
    /* ── Responsive ── */
    @media (max-width: 600px) {
      :root {
        --logo-h: 32px;
        --gap: 40px;
      }
      .carousel-row::before,
      .carousel-row::after { width: 60px; }
    }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 780px) {
    nav { padding: 12px 20px; }
    .effichat-grid, .problema-grid, .planes-grid { grid-template-columns: 1fr; }
    .planes-top { flex-direction: column; }
    .planes-top-img { width: 120px; }
    .stat { min-width: 50%; }
    .discount-banner {flex-wrap: wrap;margin: 28px 0 32px;}
    .discount-banner div{text-align: center;}
    .robot-wrap img {
    width: 100%;
    max-width: 180px;}
    footer { flex-direction: column; text-align: center; }
    .prob-stats {gap: 10px 4%;}
    .planes-top-text {order: 2;}
    .planes-top-img {order: 1;}
    .feat-table th {font-size: 0.55rem;}
    .feat-table td {font-size: 0.6rem;}
  }
    @media (max-width: 380px) {
    nav {justify-content: center;}
  }


  /* ─── ANIMATIONS ─── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .hero-content > * { animation: fadeUp .7s ease both; }
  .hero-content > *:nth-child(1) { animation-delay: .05s; }
  .hero-content > *:nth-child(2) { animation-delay: .18s; }
  .hero-content > *:nth-child(3) { animation-delay: .30s; }
  .hero-content > *:nth-child(4) { animation-delay: .42s; }