
  .av360-final,
  .av360-final * {
    box-sizing: border-box;
  }

  .av360-final {
    --av360-navy: #03245b;
    --av360-deep: #01183f;
    --av360-blue: #126fe5;
    --av360-cyan: #19c5ff;
    --av360-white: #ffffff;

    padding: 50px 0;
    background: #f3f7fc;
  }

  .av360-final__wrap {
    width: min(calc(100% - 40px), 1280px);
    margin: 0 auto;
  }

  .av360-final__card {
    min-height: 760px;
    display: grid;
    grid-template-columns: minmax(0, 55%) minmax(0, 45%);
    align-items: stretch;

    overflow: hidden;
    border-radius: 26px;

    background: var(--av360-deep);
    box-shadow: 0 24px 60px rgba(3, 37, 88, 0.18); border: 0;
  }

  .av360-final__content {
    position: relative;
    z-index: 2;

    padding: 38px 40px 34px;

    color: var(--av360-white);

    background:
      radial-gradient(circle at 10% 0%, rgba(25, 197, 255, 0.12), transparent 30%),
      linear-gradient(180deg, var(--av360-navy) 0%, var(--av360-deep) 100%);
  }

  .av360-final__eyebrow {
    min-height: 36px;
    padding: 0 14px;

    display: inline-flex;
    align-items: center;
    gap: 9px;

    border: 1px solid rgba(90, 179, 255, 0.35);
    border-radius: 999px;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.7px;
    text-transform: uppercase;

    color: #dff3ff;
    background: rgba(18, 111, 229, 0.13);
  }

  .av360-final__eyebrow svg {
    width: 17px;
    height: 17px;

    fill: none;
    stroke: var(--av360-cyan);
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .av360-final__title {
    margin: 18px 0 0;

    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(44px, 5vw, 67px);
    font-weight: 800;
    line-height: 0.96;
    letter-spacing: -2.4px;

    color: #ffffff;
  }

  .av360-final__title span {
    color: var(--av360-cyan);
  }

  .av360-final__intro {
    max-width: 610px;
    margin: 16px 0 0;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.45;

    color: #dcecff;
  }

  .av360-final__intro strong {
    color: var(--av360-cyan);
  }

  .av360-final__benefits {
    margin-top: 22px;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 14px;
  }

  .av360-final__benefit {
    min-height: 58px;
    padding: 9px 10px;

    display: flex;
    align-items: center;
    gap: 10px;

    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;

    background: rgba(255, 255, 255, 0.045);
  }

  .av360-final__benefit--wide {
    grid-column: 1 / -1;
  }

  .av360-final__icon {
    width: 37px;
    height: 37px;
    flex: 0 0 auto;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: linear-gradient(135deg, var(--av360-blue), var(--av360-cyan));
    box-shadow: 0 8px 18px rgba(10, 102, 219, 0.2);
  }

  .av360-final__icon svg {
    width: 20px;
    height: 20px;

    fill: none;
    stroke: #ffffff;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .av360-final__benefit p {
    margin: 0;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.35;

    color: #eef7ff;
  }


  .av360-final__slider-status {
    margin-top: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
  }

  .av360-final__slider-label {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .9px;
    text-transform: uppercase;
    color: #86cfff;
  }

  .av360-final__slider-dots {
    display: flex;
    align-items: center;
    gap: 7px;
  }

  .av360-final__slider-dot {
    position: relative;
    width: 20px;
    height: 5px;
    padding: 0;
    overflow: hidden;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background: rgba(255, 255, 255, .18);
  }

  .av360-final__slider-dot::after {
    content: "";
    position: absolute;
    inset: 0;
    transform: scaleX(0);
    transform-origin: left center;
    border-radius: inherit;
    background: linear-gradient(90deg, #126fe5, #19c5ff);
  }

  .av360-final__slider-dot.is-active {
    width: 34px;
    background: rgba(25, 197, 255, .20);
  }

  .av360-final__slider-dot.is-active::after {
    animation: av360Progress 9s linear forwards;
  }

  .av360-final.is-paused .av360-final__slider-dot.is-active::after {
    animation-play-state: paused;
  }

  @keyframes av360Progress {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
  }

  .av360-final__offer {
    margin-top: 22px;
    padding: 18px;

    display: grid;
    grid-template-columns: 58px 1fr auto;
    align-items: center;
    gap: 14px;

    border: 1px solid rgba(60, 164, 255, 0.28);
    border-radius: 18px;

    background: linear-gradient(135deg, rgba(10, 76, 166, 0.42), rgba(2, 29, 77, 0.8));
  }

  .av360-final__gift {
    width: 58px;
    height: 58px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: linear-gradient(135deg, #2db9ff, #106fe6);
    box-shadow: 0 12px 26px rgba(10, 101, 221, 0.28);
  }

  .av360-final__gift svg {
    width: 28px;
    height: 28px;

    fill: none;
    stroke: #ffffff;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .av360-final__offer-copy small,
  .av360-final__offer-copy strong,
  .av360-final__offer-copy p {
    font-family: Arial, Helvetica, sans-serif;
  }

  .av360-final__offer-copy small {
    display: block;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;

    color: #a7d9ff;
  }

  .av360-final__offer-copy strong {
    display: block;
    margin-top: 3px;

    font-size: 21px;
    font-weight: 800;
    line-height: 1.1;

    color: #ffffff;
  }

  .av360-final__offer-copy strong span {
    color: var(--av360-cyan);
  }

  .av360-final__offer-copy p {
    margin: 5px 0 0;

    font-size: 10px;
    line-height: 1.35;

    color: #b9d4ef;
  }

  .av360-final__button {
    min-height: 48px;
    padding: 0 17px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    border-radius: 11px;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;

    color: #ffffff;
    background: linear-gradient(135deg, #18c761, #0da84b);

    box-shadow: 0 12px 26px rgba(9, 132, 57, 0.26);

    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }

  .av360-final__button:hover {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 17px 32px rgba(9, 132, 57, 0.34);
  }

  .av360-final__button svg {
    width: 18px;
    height: 18px;

    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .av360-final__media {
    position: relative;
    min-width: 0;
    min-height: 100%;
    overflow: hidden;
    background: #eef3fb;
    border: 0;
    outline: 0;
  }

  .av360-final__media-inner {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    overflow: hidden;
    border: 0;
    outline: 0;
  }

  .av360-final__media-image {
    position: absolute;
    inset: 0;

    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    min-width: 100%;

    display: block;
    margin: 0;
    padding: 0;

    object-fit: cover;
    object-position: center bottom;

    border: 0;
    outline: 0;
    box-shadow: none;
  }


  .av360-final__benefit {
    width: 100%;
    text-align: left;
    font: inherit;
    color: inherit;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    transition: border-color .25s ease, background .25s ease, transform .25s ease, box-shadow .25s ease;
  }

  .av360-final__benefit:hover,
  .av360-final__benefit.is-active {
    border-color: rgba(25, 197, 255, 0.58);
    background: rgba(18, 111, 229, 0.22);
    box-shadow: 0 10px 24px rgba(0, 17, 55, 0.16);
    transform: translateY(-1px);
  }

  .av360-final__media-home,
  .av360-final__detail {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .20s ease, visibility .20s ease, transform .20s ease;
  }

  .av360-final__media-home.is-active,
  .av360-final__detail.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .av360-final__media-home {
    transform: scale(1.015);
  }

  .av360-final__media-home.is-active {
    transform: scale(1);
  }

  .av360-final__detail {
    position: absolute;
    inset: 0;
    z-index: 4;
    overflow-y: auto;
    padding: 44px 48px 36px 54px;
    transform: translateX(28px);
    color: #0b2b66;
    background:
      radial-gradient(circle at 90% 8%, rgba(25, 197, 255, 0.12), transparent 27%),
      linear-gradient(180deg, #ffffff 0%, #f3f7fd 100%);
  }

  .av360-final__detail.is-active {
    transform: translateX(0);
  }

  .av360-final__detail-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(18, 111, 229, 0.15);
    border-radius: 50%;
    cursor: pointer;
    color: #0d58bd;
    background: #ffffff;
    box-shadow: 0 8px 22px rgba(16, 73, 147, 0.10);
  }

  .av360-final__detail-close span {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 25px;
    line-height: 1;
  }

  .av360-final__detail-icon {
    width: 62px;
    height: 62px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    color: #ffffff;
    background: linear-gradient(135deg, #126fe5, #19c5ff);
    box-shadow: 0 15px 32px rgba(18, 111, 229, 0.24);
  }



  .av360-final__eyebrow i {
    color: var(--av360-cyan);
    font-size: 15px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .av360-final__icon i {
    color: #ffffff;
    font-size: 18px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .av360-final__gift i {
    color: #ffffff;
    font-size: 24px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .av360-final__detail-icon i {
    color: #ffffff;
    font-size: 28px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .av360-final__detail-icon svg {
    width: 31px;
    height: 31px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .av360-final__detail-label {
    display: block;
    margin-top: 24px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.15px;
    text-transform: uppercase;
    color: #126fe5;
  }

  .av360-final__detail h3 {
    max-width: 520px;
    margin: 8px 0 0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(30px, 3vw, 43px);
    font-weight: 800;
    line-height: 1.06;
    letter-spacing: -1.3px;
    color: #08265f;
  }

  .av360-final__detail-intro {
    max-width: 610px;
    margin: 18px 0 0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 17px;
    line-height: 1.65;
    color: #52698c;
  }

  .av360-final__detail ul {
    margin: 26px 0 0 6px;
    padding: 0 8px 0 0;
    display: grid;
    gap: 13px;
    list-style: none;
  }

  .av360-final__detail li {
    position: relative;
    padding: 0 10px 0 34px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.45;
    color: #17376e;
  }

  .av360-final__detail li::before {
    content: "✓";
    position: absolute;
    top: 0;
    left: 0;
    width: 21px;
    height: 21px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid #126fe5;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 900;
    color: #126fe5;
  }

  .av360-final__detail-button {
    min-height: 52px;
    margin-top: 30px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
    color: #ffffff;
    background: linear-gradient(135deg, #126fe5, #074fc2);
    box-shadow: 0 15px 30px rgba(18, 111, 229, 0.24);
    transition: transform .25s ease, box-shadow .25s ease;
  }

  .av360-final__detail-button:hover {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 20px 36px rgba(18, 111, 229, 0.31);
  }


  /* Margen real de seguridad antes del panel derecho */
  .av360-final .av360-final__benefits,
  .av360-final .av360-final__slider-status,
  .av360-final .av360-final__offer {
    width: calc(100% - 28px) !important;
    max-width: calc(100% - 28px) !important;
    margin-right: 28px !important;
    justify-self: start !important;
  }

  .av360-final .av360-final__benefit {
    min-width: 0 !important;
    max-width: 100% !important;
  }


  /* Evita el doble llenado inicial dentro de Elementor */
  .av360-final:not(.av360-js-ready)
  .av360-final__slider-dot::after {
    animation: none !important;
    transform: scaleX(0) !important;
  }



  @media (min-width: 1051px) {
    .av360-final .av360-final__benefit {
      min-width: 0 !important;
      overflow: visible !important;
      align-items: center !important;
    }

    .av360-final .av360-final__benefit p {
      min-width: 0 !important;
      overflow: visible !important;
      text-overflow: clip !important;
      white-space: normal !important;
      overflow-wrap: anywhere !important;
      word-break: normal !important;
      font-size: 12px !important;
      line-height: 1.35 !important;
    }

    .av360-final .av360-final__icon {
      width: 38px !important;
      height: 38px !important;
    }
  }

  @media (max-width: 1050px) {
    .av360-final__card {
      min-height: 0;
      grid-template-columns: 1fr;
    }

    .av360-final__media {
      order: -1;
      min-height: 620px;
    }

    .av360-final__detail {
      padding: 42px 38px 34px 42px;
    }

    .av360-final__media-inner {
      padding: 0;
    }

    .av360-final__media-image {
      width: 100% !important;
      height: 100% !important;
      max-width: none !important;
      object-fit: cover;
      object-position: center bottom;
    }
  }

  @media (max-width: 720px) {
    .av360-final {
      padding: 36px 0;
    }

    .av360-final__wrap {
      width: min(calc(100% - 24px), 1280px);
    }

    .av360-final__card {
      border-radius: 20px;
    }

    .av360-final__content {
      padding: 28px 20px 24px;
    }

    .av360-final__title {
      font-size: 43px;
      letter-spacing: -1.5px;
    }

    .av360-final__intro {
      font-size: 16px;
    }


    .av360-final .av360-final__benefits,
    .av360-final .av360-final__slider-status,
    .av360-final .av360-final__offer {
      width: 100% !important;
      max-width: 100% !important;
      margin-right: 0 !important;
    }

    .av360-final__benefits {
      grid-template-columns: 1fr;
    }

    .av360-final__benefit--wide {
      grid-column: auto;
    }

    .av360-final__slider-status {
      align-items: flex-start;
      flex-direction: column;
    }

    .av360-final__slider-dots {
      flex-wrap: wrap;
    }

    .av360-final__offer {
      grid-template-columns: 52px 1fr;
    }

    .av360-final__gift {
      width: 52px;
      height: 52px;
    }

    .av360-final__button {
      grid-column: 1 / -1;
      width: 100%;
    }

    .av360-final__media {
      min-height: 590px;
    }

    .av360-final__detail {
      padding: 36px 24px 28px 28px;
    }

    .av360-final__detail h3 {
      font-size: 31px;
    }

    .av360-final__media-inner {
      padding: 0;
    }
  }

  @media (max-width: 430px) {
    .av360-final__eyebrow {
      font-size: 9px;
      letter-spacing: 0.45px;
    }

    .av360-final__title {
      font-size: 38px;
    }

    .av360-final__media {
      min-height: 570px;
    }

    .av360-final__media-inner {
      padding: 0;
    }
  }


  /* =========================================================
     AJUSTES SOLICITADOS · PC Y RESPONSIVE
  ========================================================== */

  /* "Plan empresarial de mantenimiento" +1px */
  .av360-final .av360-final__eyebrow {
    font-size: 12px !important;
  }

  /* Texto de los 7 checks +1px */
  .av360-final .av360-final__benefit p {
    font-size: 13px !important;
  }

  /* "Firma hoy y recibe" +1px */
  .av360-final .av360-final__offer-copy small {
    font-size: 11px !important;
  }

  /* "Primer diagnóstico GRATIS" +1px */
  .av360-final .av360-final__offer-copy strong {
    font-size: 22px !important;
  }

  /* Contenido del bloque promocional +3px */
  .av360-final .av360-final__offer-copy p {
    font-size: 13px !important;
  }

  /* Botón en 15px */
  .av360-final .av360-final__button {
    font-size: 15px !important;
  }

  /* Mantener los mismos tamaños en tablet y teléfono */
  @media (max-width: 1050px) {
    .av360-final .av360-final__eyebrow {
      font-size: 12px !important;
    }

    .av360-final .av360-final__benefit p {
      font-size: 13px !important;
    }

    .av360-final .av360-final__offer-copy small {
      font-size: 11px !important;
    }

    .av360-final .av360-final__offer-copy strong {
      font-size: 22px !important;
    }

    .av360-final .av360-final__offer-copy p {
      font-size: 13px !important;
    }

    .av360-final .av360-final__button {
      font-size: 15px !important;
    }
  }

  @media (max-width: 430px) {
    .av360-final .av360-final__eyebrow {
      font-size: 10px !important;
    }

    .av360-final .av360-final__benefit p {
      font-size: 13px !important;
    }

    .av360-final .av360-final__offer-copy small {
      font-size: 11px !important;
    }

    .av360-final .av360-final__offer-copy strong {
      font-size: 22px !important;
    }

    .av360-final .av360-final__offer-copy p {
      font-size: 13px !important;
    }

    .av360-final .av360-final__button {
      font-size: 15px !important;
    }
  }


/* =========================================================
   CORRECCIÓN MÓVIL · CHECKS SIN SALIRSE DE LA PANTALLA
   El ícono conserva su tamaño y el texto continúa abajo.
========================================================= */
@media (max-width: 720px) {
  .av360-final .av360-final__benefit {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    display: grid !important;
    grid-template-columns: 37px minmax(0, 1fr) !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 10px !important;
    overflow: hidden !important;
  }

  .av360-final .av360-final__benefit p {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    margin: 0 !important;
    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: break-word !important;
    hyphens: auto;
    line-height: 1.4 !important;
  }

  .av360-final .av360-final__icon {
    width: 37px !important;
    height: 37px !important;
    min-width: 37px !important;
    flex: 0 0 37px !important;
  }
}

@media (max-width: 430px) {
  .av360-final .av360-final__benefit {
    grid-template-columns: 35px minmax(0, 1fr) !important;
    gap: 9px !important;
    padding: 10px 9px !important;
  }

  .av360-final .av360-final__icon {
    width: 35px !important;
    height: 35px !important;
    min-width: 35px !important;
    flex-basis: 35px !important;
  }

  .av360-final .av360-final__benefit p {
    font-size: 13px !important;
  }
}


/* =========================================================
   CORRECCIÓN TABLET · CHECKS SIN DESBORDARSE
========================================================= */
@media (min-width: 721px) and (max-width: 1050px) {
  .av360-final .av360-final__benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
  }

  .av360-final .av360-final__benefit {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    display: grid !important;
    grid-template-columns: 38px minmax(0, 1fr) !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 10px 12px !important;
    overflow: hidden !important;
  }

  .av360-final .av360-final__benefit p {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    margin: 0 !important;
    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: break-word !important;
    hyphens: auto;
    line-height: 1.4 !important;
  }

  .av360-final .av360-final__icon {
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    flex: 0 0 38px !important;
  }

  .av360-final .av360-final__benefit--wide {
    grid-column: 1 / -1 !important;
  }
}

/* V0.3.7 · Iconos SVG originales siempre visibles */
.av360-final__eyebrow svg,
.av360-final__icon svg,
.av360-final__gift svg,
.av360-final__detail-icon svg {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  fill: none !important;
}

.av360-final__eyebrow svg,
.av360-final__eyebrow svg * {
  stroke: var(--av360-cyan) !important;
}

.av360-final__icon svg,
.av360-final__icon svg *,
.av360-final__gift svg,
.av360-final__gift svg *,
.av360-final__detail-icon svg,
.av360-final__detail-icon svg * {
  stroke: #ffffff !important;
}

.av360-final__eyebrow svg *,
.av360-final__icon svg *,
.av360-final__gift svg *,
.av360-final__detail-icon svg * {
  opacity: 1 !important;
  vector-effect: non-scaling-stroke;
}
