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

  .cp-contact {
    --cp-contact-navy: #02295e;
    --cp-contact-blue: #147dff;
    --cp-contact-cyan: #19c6ff;
    --cp-contact-green: #19bf5b;
    --cp-contact-white: #ffffff;
    --cp-contact-muted: #aec4df;
    --cp-contact-line: rgba(89, 159, 239, 0.25);

    position: relative;
    padding: 62px 0;

    color: #ffffff;

    background:
      radial-gradient(
        circle at 0% 50%,
        rgba(12, 116, 255, 0.27),
        transparent 34%
      ),
      radial-gradient(
        circle at 100% 10%,
        rgba(22, 193, 255, 0.13),
        transparent 26%
      ),
      linear-gradient(
        135deg,
        #032c67 0%,
        #063f86 52%,
        #032d68 100%
      );

    overflow: hidden;
    isolation: isolate;
  }

  .cp-contact__decor {
    position: absolute;
    z-index: -1;
    pointer-events: none;
  }

  .cp-contact__decor--one {
    left: -130px;
    bottom: -170px;

    width: 470px;
    height: 310px;

    opacity: 0.38;

    background:
      repeating-radial-gradient(
        ellipse at bottom left,
        transparent 0 17px,
        rgba(20, 125, 255, 0.25) 18px 19px
      );
  }

  .cp-contact__decor--two {
    top: -220px;
    right: -180px;

    width: 520px;
    height: 520px;

    border-radius: 50%;

    background:
      radial-gradient(
        circle,
        rgba(27, 191, 255, 0.14),
        transparent 70%
      );
  }

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

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

    display: grid;
    grid-template-columns:
      minmax(250px, 0.78fr)
      minmax(360px, 1.05fr)
      minmax(340px, 1fr);

    align-items: stretch;
    gap: 22px;
  }

  /* =========================================================
  INFORMACIÓN
  ========================================================== */

  .cp-contact__info {
    padding: 20px 15px 15px 0;

    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .cp-contact__eyebrow {
    display: inline-block;
    margin-bottom: 10px;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 10px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 1.5px;

    color: #80c5ff;
  }

  .cp-contact__info h2 {
    max-width: 330px;
    margin: 0;

    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(34px, 3.3vw, 48px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -1.4px;

    color: #ffffff;
  }

  .cp-contact__info > p {
    max-width: 335px;
    margin: 18px 0 0;

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

    color: #c3d5e9;
  }

  .cp-contact__details {
    margin-top: 28px;

    display: flex;
    flex-direction: column;
    gap: 13px;
  }

  .cp-contact__details > a,
  .cp-contact__detail {
    display: flex;
    align-items: center;
    gap: 11px;

    color: #ffffff;
    text-decoration: none;
  }

  .cp-contact__detail-icon {
    width: 31px;
    height: 31px;
    flex: 0 0 31px;

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

    color: #80c5ff;
  }

  .cp-contact__detail-icon--whatsapp {
    color: #36e377;
  }

  .cp-contact__detail-icon svg {
    width: 23px;
    height: 23px;
  }

  .cp-contact__details > a > span:last-child,
  .cp-contact__detail > span:last-child {
    min-width: 0;

    display: flex;
    flex-direction: column;
    gap: 3px;
  }

  .cp-contact__details strong {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.25;

    color: #ffffff;
  }

  .cp-contact__details small {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 10px;
    font-weight: 500;

    color: #9eb8d6;
  }

  .cp-contact__details > a {
    transition: transform 0.25s ease;
  }

  .cp-contact__details > a:hover {
    transform: translateX(4px);
  }

  /* =========================================================
  FORMULARIO
  ========================================================== */

  .cp-contact__form-card {
    padding: 13px;

    border: 1px solid rgba(255, 255, 255, 0.36);
    border-radius: 15px;

    background:
      rgba(255, 255, 255, 0.94);

    box-shadow:
      0 24px 55px rgba(0, 25, 67, 0.24);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }

  .cp-contact__form {
    height: 100%;
    padding: 10px;

    display: flex;
    flex-direction: column;
  }

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

  .cp-contact__form label {
    display: block;
  }

  .cp-contact__form label > span {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;

    overflow: hidden;
    clip: rect(0, 0, 0, 0);

    white-space: nowrap;
    border: 0;
  }

  .cp-contact__form input,
  .cp-contact__form select,
  .cp-contact__form textarea {
    width: 100%;

    border: 1px solid #dce6f2;
    border-radius: 8px;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: 500;

    color: #17365d;
    background: #ffffff;

    outline: none;

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

  .cp-contact__form input,
  .cp-contact__form select {
    height: 45px;
    padding: 0 13px;
  }

  .cp-contact__form textarea {
    min-height: 112px;
    margin-top: 10px;
    padding: 13px;

    resize: vertical;
  }

  .cp-contact__form input::placeholder,
  .cp-contact__form textarea::placeholder {
    color: #8191a8;
    opacity: 1;
  }

  .cp-contact__form select {
    color: #8191a8;
  }

  .cp-contact__form input:focus,
  .cp-contact__form select:focus,
  .cp-contact__form textarea:focus {
    border-color: var(--cp-contact-blue);

    box-shadow:
      0 0 0 3px rgba(20, 125, 255, 0.11);
  }

  .cp-contact__submit {
    width: 100%;
    min-height: 48px;
    margin-top: 11px;
    padding: 0 18px;

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

    border: 0;
    border-radius: 8px;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: 800;

    color: #ffffff;

    background:
      linear-gradient(
        135deg,
        #1688ff,
        #0868eb
      );

    box-shadow:
      0 12px 25px rgba(8, 104, 235, 0.25);

    cursor: pointer;

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

  .cp-contact__submit:hover {
    transform: translateY(-2px);

    box-shadow:
      0 16px 30px rgba(8, 104, 235, 0.34);
  }

  .cp-contact__submit span {
    width: 20px;
    height: 20px;
  }

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

  .cp-contact__privacy {
    margin: 9px 0 0;

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

    text-align: center;
    color: #8191a8;
  }

  /* =========================================================
  MAPA
  ========================================================== */

  .cp-contact__map {
    position: relative;

    min-height: 375px;

    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 15px;

    background: #e7edf4;

    box-shadow:
      0 24px 55px rgba(0, 25, 67, 0.24);

    overflow: hidden;
  }

  .cp-contact__map iframe {
    width: 100%;
    height: 100%;
    min-height: 375px;

    display: block;

    border: 0;

    filter:
      saturate(0.72)
      contrast(1.02);
  }

  .cp-contact__location {
    position: absolute;
    right: 18px;
    bottom: 18px;

    max-width: 235px;
    padding: 17px;

    display: flex;
    align-items: flex-start;
    gap: 11px;

    border: 1px solid rgba(220, 232, 246, 0.88);
    border-radius: 12px;

    color: #17365d;

    background:
      rgba(255, 255, 255, 0.94);

    box-shadow:
      0 15px 35px rgba(18, 56, 102, 0.18);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .cp-contact__location-icon {
    width: 27px;
    height: 27px;
    flex: 0 0 27px;

    color: var(--cp-contact-blue);
  }

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

  .cp-contact__location strong {
    display: block;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: 800;

    color: #072554;
  }

  .cp-contact__location p {
    margin: 7px 0 0;

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

    color: #657b98;
  }

  .cp-contact__location a {
    display: inline-block;
    margin-top: 8px;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 10px;
    font-weight: 800;

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

  /* =========================================================
  RESPONSIVE
  ========================================================== */

  @media (max-width: 1080px) {
    .cp-contact__container {
      grid-template-columns: minmax(250px, 0.75fr) minmax(390px, 1fr);
    }

    .cp-contact__map {
      grid-column: 1 / -1;
      min-height: 350px;
    }

    .cp-contact__map iframe {
      min-height: 350px;
    }
  }

  @media (max-width: 767px) {
    .cp-contact {
      padding: 56px 0;
    }

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

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

    .cp-contact__info {
      padding: 0 0 12px;
    }

    .cp-contact__info h2 {
      font-size: 39px;
    }

    .cp-contact__info > p {
      font-size: 14px;
    }

    .cp-contact__form-grid {
      grid-template-columns: 1fr;
    }

    .cp-contact__form input,
    .cp-contact__form select {
      height: 48px;
    }

    .cp-contact__map {
      grid-column: auto;
      min-height: 390px;
    }

    .cp-contact__map iframe {
      min-height: 390px;
    }

    .cp-contact__location {
      right: 13px;
      bottom: 13px;
      left: 13px;

      max-width: none;
    }
  }

  @media (max-width: 430px) {
    .cp-contact__info h2 {
      font-size: 34px;
    }

    .cp-contact__form-card {
      padding: 9px;
    }

    .cp-contact__form {
      padding: 7px;
    }
  }


  /* =========================================================
     AJUSTE SOLICITADO
     Todo el texto +1px, excepto el título principal
  ========================================================== */

  .cp-contact .cp-contact__eyebrow {
    font-size: 11px !important;
  }

  /* El título principal conserva su tamaño actual */
  .cp-contact .cp-contact__info h2 {
    font-size: clamp(34px, 3.3vw, 48px) !important;
  }

  .cp-contact .cp-contact__info > p {
    font-size: 15px !important;
  }

  .cp-contact .cp-contact__details strong {
    font-size: 14px !important;
  }

  .cp-contact .cp-contact__details small {
    font-size: 11px !important;
  }

  .cp-contact .cp-contact__form input,
  .cp-contact .cp-contact__form select,
  .cp-contact .cp-contact__form textarea {
    font-size: 13px !important;
  }

  .cp-contact .cp-contact__privacy {
    font-size: 10px !important;
  }

  .cp-contact .cp-contact__location strong {
    font-size: 13px !important;
  }

  .cp-contact .cp-contact__location p {
    font-size: 11px !important;
  }

  .cp-contact .cp-contact__location a {
    font-size: 11px !important;
  }

  /* Botón solicitado en 15px */
  .cp-contact .cp-contact__submit {
    font-size: 15px !important;
  }

  @media (max-width: 767px) {
    /* El título principal mantiene su medida responsive */
    .cp-contact .cp-contact__info h2 {
      font-size: 39px !important;
    }

    .cp-contact .cp-contact__info > p {
      font-size: 15px !important;
    }
  }

  @media (max-width: 430px) {
    /* El título principal mantiene su medida responsive */
    .cp-contact .cp-contact__info h2 {
      font-size: 34px !important;
    }
  }


  /* Teléfono, correo y horario: +1px adicional */
  .cp-contact .cp-contact__details strong {
    font-size: 15px !important;
  }


  /* Párrafo: "Estamos listos para asesorarte..." +1px adicional */
  .cp-contact .cp-contact__info > p {
    font-size: 16px !important;
  }

/* Envío del formulario por correo */
.cp-contact__honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.cp-contact__status {
  min-height: 0;
  margin: 10px 0 0;
  padding: 0;
  border-radius: 8px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
}

.cp-contact__status.is-success,
.cp-contact__status.is-error {
  padding: 11px 13px;
}

.cp-contact__status.is-success {
  color: #116b38;
  background: #eaf9f0;
  border: 1px solid #bce8cc;
}

.cp-contact__status.is-error {
  color: #a33131;
  background: #fff0f0;
  border: 1px solid #f0c4c4;
}

.cp-contact__submit:disabled {
  cursor: wait;
  opacity: .72;
  transform: none !important;
}
