.section--denuncia {
  background: #fff;
}

.section--denuncia .section__wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 30px 20px 60px;
}

.section--denuncia .section__body {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 28px;
  background: #f7f8fc;
  box-shadow: 0 24px 70px rgba(65, 71, 86, 0.12);
}


.section--denuncia .section__header,
.section--denuncia .form--denuncia {
  position: relative;
  z-index: 1;
}

.section--denuncia .section__header {
  max-width: 620px;
  margin: 0 auto 32px;
  padding: 40px 25px 0;
  text-align: center;
}

.section--denuncia .section__title {
  margin: 0 0 8px;
  color: #414756;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.25;
}

.section--denuncia .section__description {
  margin: 0;
  color: #76777a;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
}

.section--denuncia .form--denuncia {
  padding: 0 25px 40px;
}

.section--denuncia .form__grid {
  margin-bottom: 18px;
}

.section--denuncia .form__group {
  flex: 1;
  margin-bottom: 18px;
}

.section--denuncia .form__group:last-child {
  margin-bottom: 0;
}

.section--denuncia .form__group--full {
  margin-bottom: 18px;
}

.section--denuncia .form__group label {
  display: block;
  margin-bottom: 7px;
  color: #414756;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
}

.section--denuncia .form__group label span {
  color: #ff2139;
}

.section--denuncia input,
.section--denuncia select,
.section--denuncia textarea {
  display: block;
  box-sizing: border-box;
  width: 100%;
  border: 1px solid #dfe2ea;
  border-radius: 12px;
  background-color: #fff;
  padding: 13px 15px;
  color: #414756;
  font-family: "IsidoraSans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.section--denuncia select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #a8abb5 50%),
    linear-gradient(135deg, #a8abb5 50%, transparent 50%);
  background-position:
    calc(100% - 20px) 50%,
    calc(100% - 14px) 50%;
  background-size: 7px 7px, 7px 7px;
  background-repeat: no-repeat;
  padding-right: 42px;
  cursor: pointer;
}

.section--denuncia textarea {
  min-height: 112px;
  resize: vertical;
}

.section--denuncia input:focus,
.section--denuncia select:focus,
.section--denuncia textarea:focus {
  outline: none;
  border-color: #ff2139;
  box-shadow: 0 0 0 3px rgba(255, 33, 57, 0.1);
}

.section--denuncia input::placeholder,
.section--denuncia textarea::placeholder {
  color: #a8abb5;
  font-weight: 400;
}

.section--denuncia .sixbell-contact-status {
  margin: 0 0 18px;
}

.section--denuncia .form__actions {
  display: flex;
  justify-content: center;
  margin-top: 6px;
}

.section--denuncia .btn--denuncia {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  border-radius: 50px;
  background: linear-gradient(90deg, #ff2139, #ab082c);
  box-shadow: 0 10px 24px rgba(171, 8, 44, 0.2);
  padding: 14px 26px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.section--denuncia .btn--denuncia:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(171, 8, 44, 0.28);
}

.section--denuncia .btn--denuncia:disabled {
  opacity: 0.65;
  cursor: wait;
  transform: none;
}

@media (min-width: 720px) {
  .section--denuncia .section__wrap {
    padding-top: 50px;
    padding-bottom: 100px;
  }

  .section--denuncia .section__header {
    padding-top: 55px;
  }

  .section--denuncia .section__title {
    font-size: 30px;
  }

  .section--denuncia .form--denuncia {
    padding-right: 60px;
    padding-bottom: 55px;
    padding-left: 60px;
  }

  .section--denuncia .form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .section--denuncia .form__group {
    margin-bottom: 0;
  }
}

@media (min-width: 960px) {
  .section--denuncia .section__header {
    padding-top: 65px;
  }

  .section--denuncia .form--denuncia {
    padding-right: 80px;
    padding-bottom: 65px;
    padding-left: 80px;
  }
}