.icn-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 900000;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(3px);
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.icn-modal-overlay--active {
  visibility: visible;
  opacity: 1;
}

.icn-modal {
  position: relative;
  width: 90%;
  max-width: 960px;
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.22),
    0 4px 16px rgba(0, 0, 0, 0.10);
  transform: scale(0.95);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.icn-modal-overlay--active .icn-modal {
  transform: scale(1);
  opacity: 1;
}

.icn-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 10;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  background: rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.10);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.icn-modal__close:hover {
  background: rgba(0, 0, 0, 0.12);
  transform: scale(1.1);
}

.icn-modal__close:focus-visible {
  outline: 2px solid #005fcc;
  outline-offset: 3px;
}

.icn-modal__inner {
  display: flex;
  width: 100%;
  min-height: 440px;
}

.icn-modal__left {
  flex: 0 0 55%;
    background-image: url('../img/bg-modal.jpg');
  background-color: #1a1a2e;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}

.icn-modal__left::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 15, 30, 0.30) 0%,
    rgba(30, 20, 10, 0.70) 100%
  );
  z-index: 0;
}

.icn-modal__left > * {
  position: relative;
  z-index: 1;
}

.icn-modal__left-title {
  font-size: 40px;
  font-weight: 400;
  line-height: 41px;
  color: #fff;
  margin: 0;
  text-align: start;
}

.icn-modal__accent {
  color: #FE8103;
}

.icn-modal__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.icn-modal__list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.90);
}

.icn-modal__list-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icn-modal__btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  margin-top: 8px;
  padding: 12px 22px;
  font-size: 22px;
  font-weight: 400;
  color: #fff;
  text-decoration: none;
  background-color: #FE8103;
  border-radius: 10px;
  box-shadow: 0 0px 30px rgb(0 0 0 / 90%);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.icn-modal__btn-cta:hover {
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(254, 129, 3, 0.45);
}

.icn-modal__btn-cta:active {
  transform: translateY(0);
  box-shadow: 0 4px 14px rgba(254, 129, 3, 0.35);
}

.icn-modal__btn-cta:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.icn-modal__right {
  flex: 1;
  background-color: #fff;
  border-left: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow: inset 4px 0 16px rgba(0, 0, 0, 0.04);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-align: center;
}

.icn-modal__wpp-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  color: #44AD3A;
}

.icn-modal__right-text {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  color: #444;
  margin: 0;
}

.icn-modal__right-text b {
  font-weight: 700;
  color: #1a1a1a;
}

.icn-modal__btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  font-size: 20px;
  font-weight: 600;
  color: #44AD3A;
  text-decoration: none;
  background-color: rgba(68, 173, 58, 0.08);
  border: 1.5px solid #44AD3A;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 6px 16px rgba(68, 173, 58, 0.20);
}

.icn-modal__btn-whatsapp:hover {
  color: #44AD3A !important;
  background-color: rgba(68, 173, 58, 0.16);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(68, 173, 58, 0.20);
}

.icn-modal__btn-whatsapp:active {
  transform: translateY(0);
  box-shadow: none;
}

.icn-modal__btn-whatsapp:focus-visible {
  outline: 2px solid #44AD3A;
  outline-offset: 3px;
}

.icn-modal__btn-icon {
  font-size: 17px;
  line-height: 1;
}

/* ================================================= */
/* RESPONSIVO — MOBILE (até 768px)                   */
/* ================================================= */

@media (max-width: 768px) {
  .icn-modal-overlay {
    align-items: center;
    padding: 16px;
  }

  .icn-modal {
    width: 100%;
    max-width: 100%;
    border-radius: 12px;
    max-height: 92vh;
    overflow-y: auto;
  }

  .icn-modal__inner {
    flex-direction: column;
    min-height: unset;
  }

  .icn-modal__left {
    flex: none;
    width: 100%;
    border-radius: 12px 12px 0 0;

    background-position: center top;
    padding: 28px 24px 32px;
    gap: 20px;
    align-items: center;
    text-align: center;
  }

  .icn-modal__left::before {
    background: linear-gradient(
      180deg,
      rgba(15, 15, 30, 0.65) 0%,
      rgba(30, 20, 10, 0.40) 100%
    );
  }

  .icn-modal__close {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.30);
    color: #fff;
  }

  .icn-modal__close svg path {
    fill: #fff;
  }

  .icn-modal__close:hover {
    background: rgba(255, 255, 255, 0.25);
  }

  .icn-modal__left-title {
    font-size: 28px;
    line-height: 1.35;
    text-align: center;
    margin-top: 40px;
    max-width: 260px;
  }

  .icn-modal__list-item {
    font-size: 15px;
    text-align: left;
    width: 100%;
  }

  .icn-modal__btn-cta {
    align-self: center;
    font-size: 16px;
    padding: 14px 28px;
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .icn-modal__right {
    flex: none;
    width: 100%;
    border-radius: 0 0 12px 12px;
    border-left: none;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
    box-shadow: inset 0 4px 16px rgba(0, 0, 0, 0.04);

    padding: 24px 24px 28px;
    gap: 16px;
  }

  .icn-modal__wpp-icon {
    width: 60px;
    height: 60px;
  }

  .icn-modal__right-text {
    font-size: 15px;
    max-width: 260px;
  }

  .icn-modal__btn-whatsapp {
    font-size: 16px;
    padding: 14px 28px;
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

}
