/* OVERLAY */
.cp-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.40);
  z-index: 99999;
  justify-content: center;
  align-items: center;
}

/* BOX */
.cp-modal-box {
  width: 520px;
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  font-family: 'Montserrat', sans-serif;
}

/* HEADER */
.cp-header {
  background: #efefef;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cp-header-title {
  font-size: 20px;
  font-weight: 500;
  color: #1b3556;
  letter-spacing: 0.2px;
}

/* CLOSE BUTTON */
.cp-close {
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* BODY */
.cp-body {
  padding: 28px 24px;
}

/* SECTION */
.cp-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* TITLE */
.cp-title {
  font-size: 18px;
  font-weight: 500;
  color: #1b3556;
  letter-spacing: 0.2px;
}

/* SUBTITLE */
.cp-subtitle {
  font-size: 14px;
  font-weight: 400;
  color: #6f86a3;
  line-height: 22px;
  max-width: 440px;
}

/* ITEMS */
.cp-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #2f5fa7;
  font-size: 14px;
  font-weight: 400;
}

/* ICONS */
.cp-icon {
  width: 18px;
  height: 18px;
  min-width: 18px;
}

.cp-map-btn:hover {
  background: #255bb5;
}

/* RESPONSIVO */
@media (max-width: 600px) {
  .cp-modal-box {
    width: 90%;
  }

  .cp-body {
    padding: 22px;
  }

  .cp-header {
    padding: 16px 18px;
  }
}