
  .cp-footer,
  .cp-footer * {
    box-sizing: border-box;
  }

  .cp-footer {
    --cp-footer-bg: #f7fbff;
    --cp-footer-bg-2: #eef6fc;
    --cp-footer-blue: #0d5fa8;
    --cp-footer-cyan: #1299d6;
    --cp-footer-green: #20ca63;
    --cp-footer-white: #ffffff;
    --cp-footer-navy: #0c2f63;
    --cp-footer-text: #334c68;
    --cp-footer-muted: #58708a;
    --cp-footer-line: rgba(12, 47, 99, 0.12);

    position: relative;
    padding: 54px 0 34px;

    color: var(--cp-footer-navy);

    background:
      radial-gradient(
        circle at 18% 20%,
        rgba(18, 153, 214, 0.10),
        transparent 31%
      ),
      radial-gradient(
        circle at 90% 80%,
        rgba(32, 202, 99, 0.05),
        transparent 26%
      ),
      linear-gradient(
        135deg,
        #ffffff 0%,
        #f3f9fd 52%,
        #eef6fb 100%
      );

    overflow: hidden;
    isolation: isolate;
  }

  .cp-footer__glow {
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    pointer-events: none;
  }

  .cp-footer__glow--one {
    width: 420px;
    height: 420px;
    left: -250px;
    bottom: -270px;

    background:
      radial-gradient(
        circle,
        rgba(18, 153, 214, 0.12),
        transparent 70%
      );
  }

  .cp-footer__glow--two {
    width: 380px;
    height: 380px;
    right: -230px;
    top: -220px;

    background:
      radial-gradient(
        circle,
        rgba(18, 153, 214, 0.08),
        transparent 70%
      );
  }

  .cp-footer__container {
    position: relative;
    z-index: 2;

    width: min(calc(100% - 48px), 1280px);
    margin: 0 auto;

    display: grid;
    grid-template-columns:
      minmax(370px, 1.55fr)
      minmax(210px, 0.78fr)
      minmax(235px, 0.92fr)
      minmax(170px, 0.62fr);

    align-items: start;
    gap: 42px;
  }

  /* =========================================================
  MARCA
  ========================================================== */

  .cp-footer__brand {
    padding-right: 20px;
    border-right: 1px solid var(--cp-footer-line);
  }

  .cp-footer__logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    color: var(--cp-footer-navy);
    text-decoration: none;

    transform: none;
    filter: none;
    opacity: 1;

    transition: none;
  }

  .cp-footer__logo:hover,
  .cp-footer__logo:focus,
  .cp-footer__logo:active {
    color: var(--cp-footer-navy);
    transform: none;
    filter: none;
    opacity: 1;
    text-decoration: none;
  }

  .cp-footer__logo:hover .cp-footer__logo-icon,
  .cp-footer__logo:hover .cp-footer__logo-text,
  .cp-footer__logo:focus .cp-footer__logo-icon,
  .cp-footer__logo:focus .cp-footer__logo-text {
    color: inherit;
    transform: none;
    filter: none;
    opacity: 1;
  }

  .cp-footer__logo-img {
    display: block;
    width: 206px;
    height: auto;
    max-width: 100%;
    object-fit: contain;
  }

  .cp-footer__brand > p {
    max-width: 270px;
    margin: 20px 0 0;

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

    color: var(--cp-footer-text);
  }

  .cp-footer__brand-line {
    display: block;
    width: 100%;
    max-width: 270px;
    height: 1px;
    margin-top: 19px;

    background:
      linear-gradient(
        90deg,
        rgba(106, 158, 219, 0.35),
        transparent
      );
  }

  .cp-footer__copyright {
    display: inline-flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0 4px;
    margin-top: 15px;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 9.2px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0;
    white-space: nowrap;

    color: var(--cp-footer-muted);
  }

  .cp-footer__developer-name {
    font-weight: 800;
    color: var(--cp-footer-cyan);
  }

  /* =========================================================
  COLUMNAS
  ========================================================== */

  .cp-footer__column h3 {
    margin: 4px 0 21px;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 10.5px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.4px;

    color: var(--cp-footer-navy);
  }

  .cp-footer__menu {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
  }

  .cp-footer__menu ul,
  .cp-footer__contact ul {
    margin: 0;
    padding: 0;

    display: flex;
    flex-direction: column;
    gap: 14px;

    list-style: none;
  }

  .cp-footer__menu a {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12.5px;
    font-weight: 650;

    color: var(--cp-footer-text);
    text-decoration: none;

    transition:
      color 0.25s ease,
      transform 0.25s ease;
  }

  .cp-footer__menu a:hover {
    color: var(--cp-footer-cyan);
    transform: translateX(3px);
  }

  /* =========================================================
  CONTACTO
  ========================================================== */

  .cp-footer__contact li,
  .cp-footer__contact a {
    display: flex;
    align-items: center;
    gap: 9px;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 11.5px;
    font-weight: 650;
    line-height: 1.4;

    color: var(--cp-footer-text);
    text-decoration: none;
  }

  .cp-footer__contact a {
    transition:
      color 0.25s ease,
      transform 0.25s ease;
  }

  .cp-footer__contact a:hover {
    color: var(--cp-footer-navy);
    transform: translateX(3px);
  }

  .cp-footer__contact-icon {
    width: 19px;
    height: 19px;
    flex: 0 0 19px;

    color: #0d5fa8;
  }

  .cp-footer__contact-icon--whatsapp {
    color: #2ed773;
  }

  .cp-footer__contact-icon svg {
    width: 100%;
    height: 100%;
    display: block;
  }

  /* =========================================================
  REDES
  ========================================================== */

  .cp-footer__social {
    position: relative;
    min-height: 155px;
  }

  .cp-footer__social-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
  }

  .cp-footer__social-list a {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;

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

    border: 1px solid rgba(12, 47, 99, 0.18);
    border-radius: 50%;

    color: var(--cp-footer-navy);

    background:
      linear-gradient(
        145deg,
        rgba(30, 73, 126, 0.9),
        rgba(8, 31, 67, 0.95)
      );

    box-shadow:
      0 8px 20px rgba(0, 0, 0, 0.16);

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

  .cp-footer__social-list a:hover {
    transform: translateY(-3px);
    border-color: #1299d6;
    color: #0d5fa8;

    box-shadow:
      0 12px 25px rgba(13, 95, 168, 0.24);
  }

  .cp-footer__social-list svg {
    width: 21px;
    height: 21px;
  }
/* =========================================================
  RESPONSIVE
  ========================================================== */

  @media (max-width: 1020px) {
    .cp-footer__container {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 42px 50px;
    }

    .cp-footer__brand {
      padding-right: 0;
      border-right: 0;
    }

    .cp-footer__social {
      min-height: 130px;
    }
  }

  @media (max-width: 620px) {
    .cp-footer {
      padding: 48px 0 30px;
    }

    .cp-footer__container {
      width: min(calc(100% - 28px), 1280px);

      grid-template-columns: 1fr;
      gap: 34px;
    }

    .cp-footer__brand,
    .cp-footer__column {
      padding-bottom: 28px;

      border-bottom: 1px solid var(--cp-footer-line);
    }

    .cp-footer__social {
      min-height: 100px;
      padding-bottom: 0;
      border-bottom: 0;
    }
}

  @media (max-width: 1020px) {
    .cp-footer__logo-img {
      width: 190px;
    }
  }

  @media (max-width: 620px) {
    .cp-footer__logo-img {
      width: 170px;
    }
  }

  @media (max-width: 390px) {
    .cp-footer__logo-img {
      width: 154px;
    }
  }


  .cp-footer__social-list svg {
    width: 22px;
    height: 22px;
    display: block;
  }

  .cp-footer__social-list a:hover {
    border-color: #0d5fa8;
    color: #1299d6;
    background:
      linear-gradient(
        145deg,
        #eaf4fb,
        #f8fcff
      );
  }


  .cp-footer__social-list a {
    color: #0d5fa8 !important;
    background:
      linear-gradient(
        145deg,
        #eef6fc,
        #ffffff
      ) !important;
    border: 1px solid rgba(13, 95, 168, 0.18) !important;
  }

  .cp-footer__social-list a svg,
  .cp-footer__social-list a i,
  .cp-footer__social-list a img {
    color: #0d5fa8 !important;
    fill: currentColor !important;
    stroke: currentColor !important;
    opacity: 1 !important;
  }

  .cp-footer__social-list a:hover svg,
  .cp-footer__social-list a:hover i,
  .cp-footer__social-list a:hover img {
    color: #1299d6 !important;
    fill: currentColor !important;
    stroke: currentColor !important;
  }



  /* =========================================================
     LÍNEA "DESARROLLADO POR" DEBAJO DEL COPYRIGHT
  ========================================================== */

  .cp-footer .cp-footer__copyright {
    display: flex !important;
    align-items: flex-start !important;
    flex-direction: column !important;
    gap: 4px !important;
    white-space: normal !important;
  }

  .cp-footer .cp-footer__copyright > span[aria-hidden="true"] {
    display: none !important;
  }

  .cp-footer .cp-footer__developer-name {
    display: inline !important;
  }

  .cp-footer .cp-footer__copyright::after {
    content: none !important;
  }

  @media (max-width: 620px) {
    .cp-footer .cp-footer__copyright {
      line-height: 1.5 !important;
    }
  }


  .cp-footer .cp-footer__developer-line {
    display: block !important;
    width: 100% !important;
  }


  /* =========================================================
     FOOTER PC · TODO EL TEXTO +1PX
     No modifica tablet ni móvil
  ========================================================== */

  @media (min-width: 1021px) {
    .cp-footer .cp-footer__brand > p {
      font-size: 14.5px !important;
    }

    .cp-footer .cp-footer__copyright,
    .cp-footer .cp-footer__mobile-credits {
      font-size: 10.2px !important;
    }

    .cp-footer .cp-footer__column h3 {
      font-size: 11.5px !important;
    }

    .cp-footer .cp-footer__menu a {
      font-size: 13.5px !important;
    }

    .cp-footer .cp-footer__contact li,
    .cp-footer .cp-footer__contact a {
      font-size: 12.5px !important;
    }
  }
