.kit-sugestao-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  margin-left: 8px;
  cursor: pointer;
  opacity: 0.6;
  transition: all 0.3s ease;
  background: #ffe5f3;
  padding: 2px;
}

.kit-sugestao-icon:hover {
  opacity: 1;
  background: #e91e63;
  transform: scale(1.1);
}

.kit-sugestao-icon svg {
  width: 16px;
  height: 16px;
  transition: stroke 0.3s ease;
}

.kit-sugestao-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.kit-sugestao-overlay.show {
  opacity: 1;
}

.kit-sugestao-popup {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px;
  max-width: 460px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  transform: scale(0.9);
  transition: transform 0.3s ease;
  font-family: "Nunito Sans", sans-serif;
}

.kit-sugestao-overlay.show .kit-sugestao-popup {
  transform: scale(1);
}

.kit-sugestao-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 32px;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}

.kit-sugestao-close:hover {
  color: #e91e63;
}

.kit-sugestao-title {
  font-size: 24px;
  font-weight: 600;
  margin: 15px 0 30px 0;
  line-height: 135%;
  text-align: center;
  display: flex;
}

.kit-sugestao-title-success {
  font-size: 32px;
  font-weight: 600;
  color: #d80073;
  line-height: 1.3;
  text-align: center;
}

.kit-sugestao-subtitle {
  font-size: 16px;
  margin: 0 0 30px 0;
  text-align: center;
}

.kit-sugestao-form-group {
  margin-bottom: 20px;
  position: relative;
}

.kit-sugestao-textarea {
  width: 100%;
  padding: 20px;
  padding-right: 60px;
  border: none;
  border-radius: 12px;
  background: #c62a721a;
  font-size: 16px;
  color: #c62a72;
  resize: none;
  font-family: inherit;
  box-sizing: border-box;
}

.kit-sugestao-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.kit-sugestao-input-icon {
  position: absolute;
  left: 15px;
  color: #d80073;
  pointer-events: none;
}

.kit-sugestao-input {
  width: 100%;
  padding: 18px 20px 18px 50px;
  border: 2px solid #f0f0f0;
  border-radius: 12px;
  font-size: 16px;
  font-family: inherit;
  box-sizing: border-box;
  transition: border-color 0.3s;
}

.kit-sugestao-input::placeholder {
  color: #999;
}

.kit-sugestao-input:focus {
  outline: none;
  border-color: #e91e63;
}

.kit-sugestao-submit-btn {
  width: 100%;
  padding: 18px 30px;
  background: #d80073;
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.kit-sugestao-submit-btn:hover {
  background: linear-gradient(135deg, #d81b60 0%, #c2185b 100%);
  box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4);
  transform: translateY(-2px);
}

.kit-sugestao-submit-btn:active {
  transform: translateY(0);
}

.kit-sugestao-image-placeholder {
  margin: 0 auto 20px;
  display: flex;
  justify-content: center;
}

.kit-sugestao-loading {
  text-align: center;
  padding: 40px;
}

.kit-sugestao-spinner {
  width: 50px;
  height: 50px;
  margin: 0 auto 20px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #e91e63;
  border-radius: 50%;
  animation: kit-sugestao-spin 1s linear infinite;
}

@keyframes kit-sugestao-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.kit-sugestao-step {
  animation: kit-sugestao-fadeIn 0.3s ease;
}

@keyframes kit-sugestao-fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 600px) {
  .kit-sugestao-popup {
    padding: 30px 20px;
    max-width: 95%;
  }

  .kit-sugestao-title {
    font-size: 22px;
  }

  .kit-sugestao-title-success {
    font-size: 26px;
  }

  .kit-sugestao-subtitle {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .kit-sugestao-popup {
    max-width: 90% !important;
    width: 90% !important;
    max-height: 90vh !important;
    overflow-y: auto;
  }

  .kit-sugestao-popup.step-2-active {
    max-width: 100% !important;
    width: 100% !important;
    height: 100vh !important;
    max-height: 100vh !important;
    border-radius: 0 !important;
    padding: 20px;
    overflow-y: auto;
  }

  #kit-sugestao-step-2 {
    padding-bottom: 20px;
  }
}
