.contacto {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 0;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  margin: 20px;
}

/* Info */
.contacto__info {
  background: #e07b00;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contacto__info-title {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.contacto__info-subtitle {
  font-size: 14px;
  color: #FFFFFF;
  line-height: 1.7;
  margin: 0;
}

.contacto__info-section {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contacto__info-section-title {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #FFFFFF;
  margin: 0;
}

.contacto__info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contacto__info-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #FFFFFF;
  line-height: 1.6;
}

.contacto__info-item i {
  font-size: 17px;
  color: #FFFFFF;
  margin-top: 2px;
  flex-shrink: 0;
}

.contacto__info-link {
  color: #FFFFFF;
  text-decoration: none;
  transition: color .18s;
}

.contacto__info-link:hover {
  color: #FFFFFF;
}

/* Form */
.contacto__form {
  background: #fff;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.contacto__form-title {
  font-size: 20px;
  font-weight: 600;
  color: #1d1d1d;
  margin: 0 0 0.1rem;
}

.contacto__form-subtitle {
  color: #666;
  margin: 0 0 0.5rem;
}

.contacto__form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.contacto__form-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contacto__form-label {
  font-weight: 500;
  color: #555;
  letter-spacing: 0.3px;
}

.contacto__form-input,
.contacto__form-select {
  height: 36px;
  padding: 0 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  color: #1d1d1d;
  background: #fff;
  outline: none;
  transition: border-color .18s;
}

.contacto__form-input:focus {
  border-color: #e07b00;
}

.contacto__form-textarea {
  padding: 8px 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  color: #1d1d1d;
  background: #fff;
  outline: none;
  resize: vertical;
  min-height: 120px;
  transition: border-color .18s;
}

.contacto__form-textarea:focus {
  border-color: #e07b00;
}

.contacto__form-divider {
  height: 1px;
  background: #eee;
}

.contacto__form-check {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #555;
  line-height: 1.5;
}

.contacto__form-checkbox {
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: #e07b00;
}

.contacto__form-check a {
  color: #e07b00;
  text-decoration: none;
}

.contacto__form-error {
  display: block;
  color: #e53935;
  margin-top: 3px;
  min-height: 16px;
}

.contacto__form-required {
  color: #999;
  margin: 0;
}

.contacto__form-submit {
  background: #e07b00;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 11px 0;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  transition: background .18s;
}

.contacto__form-submit:hover {
  background: #c96e00;
}

.contacto__form-success-msg {
  background: #f0faf4;
  border: 1px solid #6fcf97;
  border-radius: 6px;
  padding: 14px 16px;
  font-size: 14px;
  color: #1a7f4b;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .contacto {
    grid-template-columns: 1fr;
  }

  .contacto__form-row {
    grid-template-columns: 1fr;
  }
}