/* === MODAL CONTACTO EMPRESA === */
.empresa-contact-modal {
  max-width: 1000px !important;
  background: #1a1a1a !important;
}

.empresa-contact-wrapper {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 0;
  min-height: 500px;
}

/* Coluna Esquerda - Info */
.contact-info-col {
  background: #111;
  padding: 40px 30px;
  border-right: 1px solid #2a2a2a;
}

.contact-company-header {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-bottom: 20px;
  border-bottom: 1px solid #2a2a2a;
}

.contact-company-logo {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #fff;
  flex-shrink: 0;
}

.contact-company-name {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}

.contact-company-subtitle {
  margin: 5px 0 0;
  font-size: 13px;
  color: #999;
}

/* Coluna Direita - Formulário */
.contact-form-col {
  padding: 40px;
  background: #1a1a1a;
}

.contact-form-title {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 10px;
}

.contact-form-intro {
  font-size: 14px;
  color: #999;
  margin: 0 0 25px;
  font-style: italic;
}

.empresa-contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 15px;
}

.empresa-contact-form .form-group {
  margin-bottom: 15px;
}

.empresa-contact-form label {
  display: block;
  margin-bottom: 6px;
  color: #ccc;
  font-weight: 500;
  font-size: 13px;
}

.empresa-contact-form .form-control {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #333;
  border-radius: 6px;
  background: #222;
  color: #fff;
  font-size: 14px;
  transition: all 0.2s;
}

.empresa-contact-form .form-control:focus {
  outline: none;
  border-color: #fff;
  background: #2a2a2a;
}

.empresa-contact-form .form-control::placeholder {
  color: #666;
}

.empresa-contact-form textarea.form-control {
  resize: vertical;
  min-height: 100px;
  font-family: inherit;
}

.form-actions {
  margin-top: 25px;
}

.btn-submit {
  width: 100%;
  padding: 14px 24px;
  background: #fff;
  color: #000;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-submit:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn-submit i {
  font-size: 14px;
}

.form-response {
  margin-top: 15px;
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 14px;
  text-align: center;
}

.form-response.success {
  background: #28a745;
  color: #fff;
}

.form-response.error {
  background: #dc3545;
  color: #fff;
}

@media (max-width: 900px) {
  .empresa-contact-wrapper {
    grid-template-columns: 1fr;
  }
  
  .contact-info-col {
    border-right: none;
    border-bottom: 1px solid #2a2a2a;
  }
  
  .empresa-contact-form .form-row {
    grid-template-columns: 1fr;
  }
  
  .contact-form-col {
    padding: 30px 20px;
  }
}
