/* ==========================================================================
   CONTATO — Fale Conosco
   Segue o design system Asset: fundo preto + acento vermelho neon
   ========================================================================== */

/* Dobra 01 | Gancho */
.contato-hero-section {
  background-color: #000000;
  color: #ffffff;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background-color: #000000;
}

@media (min-width: 992px) {
  .contato-hero-section {
    background: linear-gradient(to bottom,
        rgba(0, 0, 0, 0) 70%,
        rgba(0, 0, 0, 0.6) 85%,
        #000000 100%), url("../images/home/bg-hero.png") center center / cover no-repeat;
  }
}

.contato-hero-section .contato-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 25px;
}

.contato-hero-section .contato-lead {
  font-size: 1.15rem;
  color: #e0e0e0;
  font-weight: 300;
  line-height: 1.6;
  max-width: 760px;
  margin: 0 auto;
}

.contato-hero-section .contato-lead strong {
  font-weight: 700;
  color: #ffffff;
}

@media (max-width: 991.98px) {
  .contato-hero-section {
    padding: 80px 0 0 0;
    min-height: auto;
  }
  .contato-hero-section .contato-title {
    font-size: 2.4rem;
  }
}

@media (max-width: 767.98px) {
  .contato-hero-section .contato-title {
    font-size: 2rem;
  }
  .contato-hero-section .contato-lead {
    font-size: 1rem;
  }
}

/* Dobra 02 | Formulário & Qualificação */
.contato-form-section {
  background-color: #000000;
  color: #ffffff;
  padding: 40px 0 100px;
}

@media (min-width: 992px) {
  .contato-form-section {
    background-color: #000000 !important;
    background: linear-gradient(to bottom,
        rgba(0, 0, 0, 0) 70%,
        rgba(0, 0, 0, 0.6) 85%,
        #000000 100%), url("../images/home/bg-section.png") center center / cover no-repeat;
  }
}

.contato-form-section .form-instruction {
  font-size: 1.05rem;
  color: #ffffff;
  font-weight: 300;
  text-align: center;
  margin-bottom: 40px;
}

/* Caixa do formulário */
.contato-form-box {
  background: linear-gradient(135deg,
      rgba(35, 7, 10, 0.4) 0%,
      rgba(15, 3, 4, 0.5) 100%);
  border: 1px solid rgba(255, 0, 51, 0.15);
  border-radius: 8px;
  padding: 50px 55px;
  max-width: 860px;
  margin: 0 auto;
  box-shadow: inset 0 0 30px rgba(255, 0, 51, 0.03);
}

/* Labels */
.contato-form-box .form-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}

.contato-form-box .form-label .required {
  color: var(--color-primary);
  margin-left: 2px;
}

/* Inputs, selects e textarea */
.contato-form-box .form-control,
.contato-form-box .form-select {
  background-color: #0a0a0a;
  border: 1px solid rgba(255, 0, 51, 0.2);
  border-radius: 6px;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 300;
  padding: 12px 16px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  resize: none;
}

.contato-form-box .form-control::placeholder {
  color: #777777;
}

.contato-form-box .form-control:focus,
.contato-form-box .form-select:focus {
  background-color: #0a0a0a;
  border-color: var(--color-primary);
  color: #ffffff;
  box-shadow: 0 0 12px rgba(255, 0, 51, 0.25);
  outline: none;
}

/* Select — seta customizada clara */
.contato-form-box .form-select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
}

.contato-form-box .form-select option {
  background-color: #0a0a0a;
  color: #ffffff;
}

/* Grupos de radio / checkbox */
.contato-form-box .choice-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin-top: 4px;
}

.contato-form-box label {
  margin-bottom: 0;
  padding-left: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.contato-form-box .wpcf7-form-control.wpcf7-radio input[type="radio"],
.contato-form-box .wpcf7-form-control.wpcf7-checkbox input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  min-height: 18px;
  margin: 0;
  padding: 0;
  background-color: #0a0a0a;
  border: 1px solid rgba(255, 0, 51, 0.5);
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
}

.contato-form-box .wpcf7-form-control.wpcf7-radio input[type="radio"] {
  border-radius: 50%;
}

.contato-form-box .wpcf7-form-control.wpcf7-radio input[type="radio"]:checked {
  border-color: var(--color-primary);
  background-color: #0a0a0a;
  box-shadow: inset 0 0 0 4px #0a0a0a;
  background-color: var(--color-primary);
}

.contato-form-box .wpcf7-form-control.wpcf7-checkbox input[type="checkbox"] {
  border-radius: 4px;
}

.contato-form-box .wpcf7-form-control.wpcf7-checkbox input[type="checkbox"]:checked {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}

.contato-form-box .wpcf7-form-control.wpcf7-radio input[type="radio"]:checked {
  background-color: #0a0a0a;
  border-color: var(--color-primary);
  background-image: radial-gradient(circle,
      var(--color-primary) 0 4px,
      transparent 4.5px);
}

.contato-form-box .wpcf7-form-control.wpcf7-checkbox input[type="checkbox"]:checked {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  position: relative;
}

.contato-form-box .wpcf7-form-control.wpcf7-checkbox input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  left: 5px;
  top: 2px;
}

.contato-form-box label {
  font-size: 0.92rem;
  font-weight: 300;
  color: #ffffff;
  cursor: pointer;
  margin-bottom: 0;
}

.wpcf7-list-item {
  margin: 0 !important;
}

.wpcf7-checkbox {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contato-form-box .btn-submit-wrapper {
  margin-top: 15px;
  text-align: center;
}

.contato-form-box .btn-asset-neon {
  border: 1px solid var(--color-primary);
  padding: 15px 50px;
  cursor: pointer;
}

@media (max-width: 767.98px) {
  .contato-form-section {
    padding: 30px 0 70px;
  }
  .contato-form-box {
    padding: 35px 22px;
  }
  .contato-form-box .choice-group {
    gap: 10px 20px;
  }
}
