/* ===== OUVIDORIA PAGE ===== */

.main-content {
  min-height: 100vh;
}

/* Hero Section */
.ouvidoria-hero {
  background: #004968;
  padding: 4rem 0 3rem;
  color: white;
  text-align: center;
}

.hero-content {
  max-width: 700px;
  margin: 0 auto;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin: 0 0 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.hero-title i {
  font-size: 3rem;
  color: #f97316;
}

.hero-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
  opacity: 0.95;
}

/* Form Section */
.ouvidoria-form-section {
  padding: 4rem 0;
  background: #f9fafb;
}

.form-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 3rem;
}

.ouvidoria-form {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

/* Form Sections */
.form-section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-section-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #004968;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0;
  padding-bottom: 1rem;
  border-bottom: 2px solid #e5e7eb;
}

.form-section-title i {
  font-size: 1.5rem;
  color: #f97316;
}

/* Form Rows */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 600;
  color: #374151;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
  padding: 0.875rem 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #f97316;
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #9ca3af;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* Manifestação Types */
.manifestacao-types {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.manifestacao-card {
  position: relative;
  cursor: pointer;
}

.manifestacao-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.manifestacao-card .card-content {
  background: #f9fafb;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s;
  text-align: center;
}

.manifestacao-card .card-content i {
  font-size: 2rem;
  color: #6b7280;
  transition: all 0.3s;
}

.manifestacao-card .card-content span {
  font-weight: 600;
  color: #374151;
  font-size: 0.95rem;
}

.manifestacao-card input[type="radio"]:checked ~ .card-content {
  background: #fef3c7;
  border-color: #f97316;
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.manifestacao-card input[type="radio"]:checked ~ .card-content i {
  color: #f97316;
  transform: scale(1.1);
}

.manifestacao-card:hover .card-content {
  border-color: #f97316;
  transform: translateY(-2px);
}

/* Checkbox WhatsApp */
.form-checkbox {
  padding: 1rem;
  background: #f9fafb;
  border-radius: 12px;
  border: 2px solid #e5e7eb;
}

.checkbox-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  position: relative;
}

.checkbox-wrapper input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.checkmark {
  width: 24px;
  height: 24px;
  border: 2px solid #d1d5db;
  border-radius: 6px;
  background: white;
  position: relative;
  transition: all 0.3s;
  flex-shrink: 0;
}

.checkmark::after {
  content: "";
  position: absolute;
  display: none;
  left: 7px;
  top: 3px;
  width: 6px;
  height: 11px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkbox-wrapper input[type="checkbox"]:checked ~ .checkmark {
  background: #f97316;
  border-color: #f97316;
}

.checkbox-wrapper input[type="checkbox"]:checked ~ .checkmark::after {
  display: block;
}

.checkbox-label {
  font-weight: 600;
  color: #374151;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.checkbox-label i {
  font-size: 1.25rem;
  color: #25d366;
}

/* Form Actions */
.form-actions {
  display: flex;
  justify-content: center;
  padding-top: 1rem;
}

.btn-enviar {
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  color: white;
  padding: 1rem 3rem;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.btn-enviar:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
}

.btn-enviar i {
  font-size: 1.25rem;
}

/* Form Notice */
.form-notice {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: #eff6ff;
  border-radius: 12px;
  border-left: 4px solid #004968;
}

.form-notice i {
  font-size: 1.5rem;
  color: #004968;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.form-notice p {
  margin: 0;
  color: #1e3a8a;
  font-weight: 500;
  line-height: 1.5;
}

/* Info Section */
.info-section {
  padding: 4rem 0;
  background: white;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.info-card {
  text-align: center;
  padding: 2rem;
  background: #f9fafb;
  border-radius: 12px;
  border: 2px solid #e5e7eb;
  transition: all 0.3s;
}

.info-card:hover {
  border-color: #f97316;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.info-card i {
  font-size: 3rem;
  color: #f97316;
  margin-bottom: 1rem;
}

.info-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #004968;
  margin: 0 0 0.5rem;
}

.info-card p {
  color: #6b7280;
  margin: 0;
  line-height: 1.6;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1024px) {
  .form-wrapper {
    padding: 2.5rem 2rem;
  }

  .manifestacao-types {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .ouvidoria-hero {
    padding: 3rem 0 2rem;
  }

  .hero-title {
    font-size: 2rem;
    flex-direction: column;
    gap: 0.5rem;
  }

  .hero-title i {
    font-size: 2.5rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .ouvidoria-form-section {
    padding: 3rem 0;
  }

  .form-wrapper {
    padding: 2rem 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .manifestacao-types {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .manifestacao-card .card-content {
    padding: 1.25rem 0.75rem;
  }

  .manifestacao-card .card-content i {
    font-size: 1.75rem;
  }

  .form-section-title {
    font-size: 1.1rem;
  }

  .btn-enviar {
    width: 100%;
    justify-content: center;
  }

  .info-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .info-card {
    padding: 1.5rem;
  }
}

@media (max-width: 576px) {
  .ouvidoria-hero {
    padding: 2rem 0 1.5rem;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .form-wrapper {
    padding: 1.5rem 1rem;
    border-radius: 12px;
  }

  .ouvidoria-form {
    gap: 2rem;
  }

  .form-section {
    gap: 1.25rem;
  }

  .manifestacao-types {
    grid-template-columns: 1fr;
  }

  .manifestacao-card .card-content span {
    font-size: 0.9rem;
  }

  .btn-enviar {
    padding: 0.875rem 2rem;
    font-size: 1rem;
  }

  .checkbox-label {
    font-size: 0.9rem;
  }
}
